배열의 평균값 - 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에 대한 공부가 필요합니다.

 


 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

NumPy documentation — NumPy v1.26 Manual

The reference guide contains a detailed description of the functions, modules, and objects included in NumPy. The reference describes how the methods work and which parameters can be used. It assumes that you have an understanding of the key concepts.

numpy.org

 

'공부 > 📝 프로그래머스' 카테고리의 다른 글

옷가게 할인 받기 - 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