평균 구하기

210717

'''
https://programmers.co.kr/learn/courses/30/lessons/12944
평균 구하기
[풀이]
1. sum / len
'''
def solution(arr):
    return sum(arr)/len(arr)
'''
'''

Last updated

Was this helpful?