목록solve me first (1)
규도자 개발 블로그
[해커랭크(Hackerrank)/Problem Solving/파이썬3(python3)] Solve Me First
Complete the function solveMeFirst to compute the sum of two integers.Function prototype:int solveMeFirst(int a, int b);where,a is the first integer input.b is the second integer inputReturn valuessum of the above two integersSample Inputa = 2 b = 3 Sample Output5 ExplanationThe sum of the two integers and is computed as: . 풀이 def solveMeFirst(a,b): return a + b num1 = int(input()) num2 = int(in..
알고리즘/풀이
2019. 3. 9. 15:01