題目描述
給你一個由 n 個整數(shù)組成的數(shù)組 nums ,和一個目標值 target 。請你找出并返回滿足下述全部條件且不重復(fù)的四元組 [nums[a], nums[b], nums[c], nums[d]] (若兩個四元組元素一一對應(yīng),則認為兩個四元組重復(fù)):
0 <= a, b, c, d < n
a、b、c 和 d 互不相同
nums[a] + nums[b] + nums[c] + nums[d] == target
你可以按 任意順序 返回答案 。
輸入:nums = [1,0,-1,0,-2,2], target = 0
輸出:[[-2,-1,1,2],[-2,0,0,2],[-1,0,0,1]]
示例 2:
輸入:nums = [2,2,2,2,2], target = 8
輸出:[[2,2,2,2]]
提示:
1 <= nums.length <= 200
-109 <= nums[i] <= 109
-109 <= target <= 109
參考代碼
# 282 / 289 個通過測試用例 如果只為機試 這個方法已經(jīng)夠用了
import itertools
class Solution:
def fourSum(self, nums: List[int], target: int) -> List[List[int]]:
ret = []
nums = sorted(nums)
for st in itertools.combinations(nums, 4):
if sum(st) == target and st not in ret:
ret.append(st)
return ret
本文摘自 :https://blog.51cto.com/u