Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 362 Bytes

1672-kir3i.md

File metadata and controls

22 lines (14 loc) · 362 Bytes

1672. Richest Customer Wealth

Solution

  • 시간복잡도: O(MN)

  • 알고리즘

    구현, 최댓값

  • 풀이설명

    1. 각 고객의 wealth 합을 구합니다.
    2. 합 중 최댓값을 반환합니다.
  • 소스코드

class Solution:
    def maximumWealth(self, accounts):
        return max([sum(account) for account in accounts])