mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
3 lines
125 B
Python
3 lines
125 B
Python
class Solution:
|
|
def maximumWealth(self, accounts: List[List[int]]) -> int:
|
|
return max([sum(x) for x in accounts]) |