[프로그래머스 level1] 평균 구하기

김예지·2021년 10월 10일
0

문제

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


문제 풀이

function solution(arr) {
    return arr.reduce((a, b) => a+b) / arr.length;
}
profile
내가 짱이다 😎 매일 조금씩 성장하기🌱

0개의 댓글