해커랭크1 Solve Me First Complete the function solveMeFirst to compute the sum of two integers. Example Return . Function Description Complete the solveMeFirst function in the editor below. solveMeFirst has the following parameters: int a: the first value int b: the second value Returns - int: the sum of and Constraints Sample Input a = 2 b = 3 Sample Output 5 Explanation 2+3 = 5 def solveMeFirst(a,b): # Hint: Type retu.. 2021. 1. 17. 이전 1 다음