💫 내가 작성한 코드
function solution(arr) {
const addNum = arr.reduce(
(accumulator, currentValue) => accumulator + currentValue,
0
);
const answer = addNum / arr.length;
console.log(answer);
return answer;
}
💫 Review
reduce.. 왤케 어려운거냐 너란녀석..
이번 문제는 생각보다 쉽게 풀었다
알고리즘에 익숙해지는건가..
끝 !
'Algorithm' 카테고리의 다른 글
8. 청팀 / 백팀 (앨리스 코딩) (0) | 2021.09.28 |
---|---|
6. 자리 수 더하기 (LV.1) (0) | 2021.09.11 |
5. 두 개 뽑아서 더하기 (LV.1) (0) | 2021.09.10 |
4. 서울에서 김서방 찾기 (LV.1) (0) | 2021.09.03 |
3. 핸드폰 번호 가리기 (LV.1) (0) | 2021.08.31 |