✏️ Algorithm.
- 2차원 배열에서 각각 1차 배열의 합의 최대 값을 구하기
📋 Solved.
1. 최대값 max 변수 지정
2. 2중 for문을 돌며 각각 1차 배열의 합을 구하기전 sum = 0 초기화
3. Math.max() 함수로 return 값 max에 최대 값 삽입
✔️ Code.
public int maximumWealth(int[][] accounts) {
int max = 0;
for (int[] account : accounts) {
int sum = 0;
for (int i : account) {
sum +=i;
}
max = Math.max(max,sum);
}
return max;
}
'Algorithm > LeetCode' 카테고리의 다른 글
[LeetCode][Easy][Java] 1470. Shuffle the Array (0) | 2021.01.11 |
---|---|
[LeetCode][Easy][Java] 1431. Kids With the Greatest Number of Candies (0) | 2021.01.08 |
[LeetCode][Easy][Java] 1480. Running Sum of 1d Array (0) | 2021.01.04 |
[LeetCode][Easy][Java] 9. Palindrome Number (0) | 2020.11.27 |
[LeetCode][ Easy][Java] 7. Reverse Integer (0) | 2020.11.27 |