Skip to main content

내적

Solution

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

Review

.

References