1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/kt/richest-customer-wealth.kt

7 lines
159 B
Kotlin
Raw Permalink Normal View History

class Solution {
fun maximumWealth(accounts: Array<IntArray>): Int =
accounts.map { account ->
account.sum()
}.maxOrNull()!!
}