반응형
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;
}
};
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > Implementation' 카테고리의 다른 글
(C++) - LeetCode (easy) 1716. Calculate Money in Leetcode Bank (0) | 2024.06.19 |
---|---|
(C++) - LeetCode (easy) 1688. Count of Matches in Tournament (0) | 2024.06.10 |
(C++) - LeetCode (easy) 1652. Defuse the Bomb (0) | 2024.05.24 |
(C++) - LeetCode (easy) 1646. Get Maximum in Generated Array (1) | 2024.05.23 |
(C++) - LeetCode (easy) 1636. Sort Array by Increasing Frequency (0) | 2024.05.17 |