def solution(arr):
for i in range(len(arr)):
return sum(arr) / len(arr)
'Language > Python' 카테고리의 다른 글
[Python / 프로그래머스 level 1] x만큼 간격이 있는 n개의 숫자 (0) | 2021.06.16 |
---|---|
[Python / 프로그래머스 level 1] 최대공약수와 최소공배수 (0) | 2021.06.15 |
[Python / 프로그래머스 level 1] 행렬의 덧셈 (0) | 2021.06.15 |
[Python / 프로그래머스 level 1] 짝수와 홀수 (0) | 2021.06.14 |
[Python / 프로그래머스 level 1] 완주하지 못한 선수 (0) | 2021.06.13 |