kucheasysa

Algoverse_adesh_25

Jun 23rd, 2024 (edited)
588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. class Solution:
  2.     def maximumWealth(self, accounts: List[List[int]]) -> int:
  3.         return max([sum(i) for i in accounts])
Advertisement
Add Comment
Please, Sign In to add comment