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