LeetCode/kt/richest-customer-wealth.kt

7 lines
159 B
Kotlin
Raw Normal View History

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