561. 数组拆分
为保证权益,题目请参考 561. 数组拆分(From LeetCode).
解决方案1
Python
python
# 561. 数组拆分 I
# https://leetcode.cn/problems/array-partition-i/
from typing import List
class Solution:
def arrayPairSum(self, nums: List[int]) -> int:
nums.sort()
ans = 0
for i in range(len(nums) // 2):
ans += nums[i*2]
return ans
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13