▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/array-partition/ Array Partition - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 짝수 개의 원소를 가지는 배열 nums가 주어진다. 2개씩 조합했을 때(combination) 각 원소 중 더 작은 값만 골라 모두 더했을 때 최대값을 구하는 문제. class Solution: def arrayPairSum(self, nums: List[int]) -> ..