Notice
Recent Posts
Recent Comments
준호씨의 블로그
hackerrank - Solve Me First 본문
반응형
문제: https://www.hackerrank.com/challenges/solve-me-first/problem
첫 번째 문제는 아주 그냥 연습문제입니다. solveMeFirst함수를 만다는 것이고 두 정수 인자의 합을 리턴하는 것입니다.
템플릿 코드에도 대놓고 답을 알려 주고 있습니다.
def solveMeFirst(a,b):
# Hint: Type return a+b below
num1 = int(input())
num2 = int(input())
res = solveMeFirst(num1,num2)
print(res)
return a+b를 넣어 주면 끝납니다.
def solveMeFirst(a,b):
return a+b
num1 = int(input())
num2 = int(input())
res = solveMeFirst(num1,num2)
print(res)
반응형
'개발이야기 > PS - Problem Solving, 알고리즘' 카테고리의 다른 글
hackerrank - Compare the Triplets - Python3 (0) | 2020.04.30 |
---|---|
hackerrank - Simple Array Sum (0) | 2020.04.29 |
hackerrank - Birthday Cake Candles (0) | 2020.04.27 |
hackerrank - Mini-Max Sum (0) | 2020.04.26 |
hackerrank - Staircase - Python3 (0) | 2020.04.24 |
Comments