Introfor

[Intro] add 본문

Programming_prob/Codesignal

[Intro] add

YongArtist 2020. 7. 18. 14:25

Write a function that returns the sum of two numbers.

두 수의 합을 반환하는 함수를 작성하세요.

def add(param1, param2):
    return (param1+param2)

 

'Programming_prob > Codesignal' 카테고리의 다른 글

[Intro] Make Array Consecutive 2  (0) 2020.07.18
[Intro] shapeArea  (0) 2020.07.18
[Intro] adjacentElementsProduct  (0) 2020.07.18
[Intro] checkPalindrome  (0) 2020.07.18
[Intro] centuryFromYear  (0) 2020.07.18
Comments