-
15596_Python // 정수 n개의 합IT_Baekjoon 단계별로 풀어보기/함수 2020. 1. 9. 17:37

Pythondef solve(a): ans = 0 for count in range(0,len(a)): ans += a[count] return ans
===
'IT_Baekjoon 단계별로 풀어보기 > 함수' 카테고리의 다른 글
1065_Python // 한수 (0) 2020.01.10 4673_Python // 셀프 넘버 (0) 2020.01.09