배열의 평균값 - Python
2023. 9. 19. 18:42ㆍ공부/📝 프로그래머스
def solution(numbers):
answer = sum(numbers) / len(numbers)
return answer
# Test Cases
print(solution([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]))
print(solution([89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]))
math 라이브러리에 avg 함수가 없길레 단순하게 풀었습니다.
import numpy as np
def solution(numbers):
return np.mean(numbers)
그런데 numpy에 mean 함수가 있네요... numpy에 대한 공부가 필요합니다.
- NumPy Documentation: https://numpy.org/doc/stable/index.html
'공부 > 📝 프로그래머스' 카테고리의 다른 글
옷가게 할인 받기 - Python (0) | 2023.09.20 |
---|---|
두 수의 합 - C# (0) | 2023.09.20 |
피자 나눠 먹기 (2) - Python (0) | 2023.09.19 |
피자 나눠 먹기 (1) - Python (0) | 2023.09.19 |
짝수는 싫어요 - Python (0) | 2023.09.19 |