반응형
Problem)
Solution)
class Solution:
def arrayPairSum(self, nums: List[int]) -> int:
return sum(sorted(nums)[::2])
반응형
'알고리즘 > 코딩 테스트' 카테고리의 다른 글
[카카오] 2020 신입 개발자 블라인드 채용 1차 코딩 - 문자열 압축 (0) | 2021.08.30 |
---|---|
[Leetcode] Diagonal Traverse (0) | 2020.08.30 |
[Leetcode] Subarray Sum Equals K (0) | 2020.08.25 |
[ Leetcode ] Trapping Rain Water (0) | 2020.08.24 |
[LeetCode] Two Sum (0) | 2020.08.20 |