알고리즘 55 - Square(n) Sum

박진현·2021년 7월 20일
0

Q.

Description:
Complete the square sum function so that it squares each number passed into it and then sums the results together.

For example, for [1, 2, 2] it should return 9 because 1^2 + 2^2 + 2^2 = 9.

A)

function squareSum(numbers){
 return numbers.map(el =>el**2).reduce((a,b) => a+b,0)
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글