반응형
포인트
1. 파이썬은 정말 간단하다. 이걸 만든 사람들은 대체 어떤 것을 한 것일까? 궁금하다
🧶문서는 항상 수정 될 수 있습니다. 비판은 환영합니다.
class Solution {
public:
int maximumWealth(vector<vector<int>>& 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])
python
어떻게 한 줄로 저 기다란 코드를 줄일 수 있었던 걸까?
반응형
'알고리즘' 카테고리의 다른 글
[알고리즘] Shuffle the Array (0) | 2021.01.19 |
---|---|
[알고리즘] Number of Good Pairs (0) | 2021.01.19 |
[알고리즘] Kth Largest Element in an Array (0) | 2021.01.17 |
[알고리즘] Get Maximum in Generated Array (0) | 2021.01.16 |
[알고리즘] longest-substring-without-repeating-characters (0) | 2021.01.12 |
댓글