본문으로 건너뛰기

내적

Solution

function solution(a, b) {
return a.reduce((acc, cur, idx) => acc + cur * b[idx], 0);
}

Review

.

References