mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
6 lines
159 B
Kotlin
6 lines
159 B
Kotlin
class Solution {
|
|
fun maximumWealth(accounts: Array<IntArray>): Int =
|
|
accounts.map { account ->
|
|
account.sum()
|
|
}.maxOrNull()!!
|
|
}
|