반응형 Richest Customer Wealth2 [알고리즘] Number of Good Pairs 알고리즘을 공부하면서 느낀 것은 짜면 짤수록 나의 알고리즘이 부족함을 항상 느낍니다. 그래서 공부할 맛이나서 좋긴 한데 남들하고 비교하니 ~~~ class Solution { public: int numIdenticalPairs(vector& nums) { int a = 0; int b = 0; int result = 0; for(int i=0; i 2021. 1. 19. [알고리즘] Richest Customer Wealth 포인트 1. 파이썬은 정말 간단하다. 이걸 만든 사람들은 대체 어떤 것을 한 것일까? 궁금하다 🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다. class Solution { public: int maximumWealth(vector& accounts) { int rich = 0; for(auto person : accounts){ int a = 0; for(auto money : person) a+=money; rich = max(rich, a); } return rich; } }; c++ class Solution: def maximumWealth(self, accounts: List[List[int]]) -> int: return max([ sum(i) for i in accounts]) p.. 2021. 1. 19. 이전 1 다음 반응형