문제 링크
https://www.acmicpc.net/problem/15596
나의 코드 (Python)
def solve(a: list) -> int:
sum = 0
for i in a:
sum += i
return sum
solve라는 함수를 만들어 그 안에 입력된 개수만큼 합을 구합니다.
'코딩공부 > 백준 (python)' 카테고리의 다른 글
[백준 1065] 한수 (Python) (0) | 2022.03.01 |
---|---|
[백준 4673] 셀프 넘버 (Python) (0) | 2022.03.01 |
[백준 4344] 평균은 넘겠지 (Python) (0) | 2022.02.22 |
[백준 8958] OX퀴즈 (Python) (0) | 2022.02.22 |
[백준 1546] 평균 (Python) (0) | 2022.02.22 |
댓글