반응형
https://leetcode.com/problems/richest-customer-wealth/description/
2차원 int 배열이 주어질때
각 행의 합 중 최대값을 리턴하는 문제.
class Solution {
fun maximumWealth(accounts: Array<IntArray>): Int {
var ans = 0
for(i in 0 until accounts.size) {
var cnt = 0
for(j in 0 until accounts[i].size) {
cnt += accounts[i][j]
}
if(ans < cnt)
ans = cnt
}
return ans
}
}
반응형
'IT > 알고리즘' 카테고리의 다른 글
80] 프로그래머스 문자열 반복해서 출력하기 (0) | 2023.10.08 |
---|---|
79] 프로그래머스 a와 b 출력하기 kotlin (0) | 2023.10.05 |
77] Leetcode 1979. Find Greatest Common Divisor of Array #Kotlin (0) | 2023.04.12 |
76] ★ Leetcode 1071. Greatest Common Divisor of Strings Kotlin (0) | 2023.04.11 |
75] Leetcode 2413. Smallest Even Multiple Kotlin (0) | 2023.04.10 |
댓글