[프로그래머스/js] 배열의 평균값
2023. 3. 26. 11:02ㆍ코딩 테스트(Coding Test)/프로그래머스
내 풀이
function solution(numbers) {
var total = 0;
for(var i=0;i<numbers.length;i++){
total += numbers[i];
}
var answer = total / numbers.length;
return answer;
}
알게 된 것
평균을 구하는 메서드
reduce()
배열.reduce((누적값, 현잿값, 인덱스, 요소) => { return 결과 }, 초깃값);
Array.prototype.reduce() - JavaScript | MDN (mozilla.org)
다른 풀이
function solution(numbers) {
return numbers.reduce((acc, cur) => acc + cur) / numbers.length
}
'코딩 테스트(Coding Test) > 프로그래머스' 카테고리의 다른 글
[프로그래머스/js] 피자 나눠 먹기(2) (0) | 2023.03.26 |
---|---|
[프로그래머스/js] 피자 나눠 먹기(1) (0) | 2023.03.26 |
[프로그래머스/js] 약수의 합 (0) | 2023.03.24 |
[프로그래머스/js] 짝수의 합 (0) | 2023.03.24 |
[프로그래머스/js] 두 수의 나눗셈 (0) | 2023.03.24 |