[Leetcode] 1672. Richest Customer Wealth (JS)

OROSY·2021년 4월 27일
0

Algorithms

목록 보기
3/38
post-thumbnail

출처

Leetcode 1672. Richest Customer Wealth

문제

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * @param {number[][]} accounts
 * @return {number}
 */
var maximumWealth = function(accounts) {
    let max = 0
    for (i = 0; i < accounts.length; i++) {
        let sum = accounts[i].reduce((x, y) => x + y)
        if (sum > max) {
            max = sum
        }
    }
    return max
};
cs

실행 결과

profile
Life is a matter of a direction not a speed.

0개의 댓글