분류 전체보기 (9) 썸네일형 리스트형 [python] codeSignal 문제풀이 (1~3) 1. Write a function that returns the sum of two numbers. Example) For param1 = 1 and param2 = 2, the output should be add(param1, param2) = 3. 1 2 3 def add(param1, param2): return param1 + param2 2. Given a year, return the century it is in. The first century spans from the year 1 up to and including the year 100, the second - from the year 101 up to and including the year 200, etc. Example) Fo.. 이전 1 2 다음