정수를 담고 있는 배열 arr의 평균값을 return하는 함수, solution을 완성해보세요.
Approach
1. arr 의 요소들을 모두 더한다
2. 1번의 값에서 요소개수만큼 나눈다
function solution(arr) {
const arrSum = arr.reduce((accumulator, currentValue) => {
return accumulator + currentValue;
});
const answer = arrSum / arr.length;
return answer;
}
728x90
반응형
'부트캠프 개발일지 2023-2024 > Algorithm 알고리즘' 카테고리의 다른 글
[Programmers] 알고리즘 : x만큼 간격이 있는 n개의 숫자 (0) | 2023.11.15 |
---|---|
[Programmers] 알고리즘 : 자릿수 더하기 (1) | 2023.11.13 |
[Programmers] 알고리즘 : 짝수와 홀수 (0) | 2023.11.08 |
[Programmers] 알고리즘 : 배열의 평균값 (0) | 2023.11.08 |
[FCC] Basic Javascript Grammar & Terminology (0) | 2023.10.27 |