presentation
presentation

A Very Big Sum

October 31, 2019 • ☕️ 1 min read
algorithm/hackerrank

출처

// Complete the aVeryBigSum function below.
function aVeryBigSum(ar) {
    return ar.reduce((a, b) => a + b);
}