Recca Chao 的 gitHub page

推廣網站開發,包含 Laravel 和 Kotlin 後端撰寫、自動化測試、讀書心得等。Taiwan Kotlin User Group 管理員。

View on GitHub

Kotlin Leetcode - 1672. Richest Customer Wealth

題目連接

class Solution {
    fun maximumWealth(accounts: Array<IntArray>): Int {
    }
}

解題思路

這題是很單純的陣列加總

透過 map 可以將這段邏輯

壓縮在單行之內處理完畢

Kotlin 參考解答

單行之內處理完畢的寫法如下

class Solution {
    fun maximumWealth(accounts: Array<IntArray>) = 
        accounts.map { it.sum() }.max()
}

回到 leetcode 列表