ppotatoG


Back to all posts

평균 구하기

Written by ppotatoG & Posted on November 13th, 2021

Programmers 평균 구하기

제출한 답

reduce로 모든 값을 더한 후 num의 길이로 나눠주기

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

Posted on November 13th, 2021