프로그래머스 Lv1. 평균 구하기

용상윤·2021년 3월 7일
0
post-custom-banner

📌 문제

https://programmers.co.kr/learn/courses/30/lessons/12944


📌 접근

js

  • reduce() 를 이용하여 배열의 합을 구한다.

python

  • 내장함수 sum() 사용

📌 코드

js

function solution(arr) {
    return arr.reduce((a,b) => a+b) / arr.length;
}

python

def solution(arr):
    return sum(arr) / len(arr)
    

✍ 메모

profile
달리는 중!

0개의 댓글