본문 바로가기

Algorithm/Implementation

(C++) - LeetCode (easy) 1672. Richest Customer Wealth

반응형

https://leetcode.com/problems/richest-customer-wealth/

간단 loop 문제였습니다.

📕 풀이방법

📔 입력 및 초기화

정답 변수 maxWealth 선언 후 0으로 초기화해줍니다.

📔 풀이과정

accounts의 각 계정별로 wealth를 구해 maxWealth와 최댓값 비교 후 큰 값을 maxWealth에 저장합니다.

📔 정답 출력 | 반환

maxWealth를 반환합니다.


📕 Code

📔 C++

class Solution {
public:
    int maximumWealth(vector<vector<int>>& accounts) {
        int maxWealth = 0;
        for(auto acc : accounts) {
            int wealth = 0;
            for(auto a : acc) {
                wealth += a;
            }
            maxWealth = max(maxWealth, wealth);
        }
        return maxWealth;
    }
};

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.