-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy path018 4Sum.py
47 lines (41 loc) · 1.69 KB
/
018 4Sum.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
'''
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target.
Note:
Elements in a quadruplet (a,b,c,d) must be in non-descending order. (ie, a ≤ b ≤ c ≤ d)
The solution set must not contain duplicate quadruplets.
For example, given array S = {1 0 -1 0 -2 2}, and target = 0.
A solution set is:
(-1, 0, 0, 1)
(-2, -1, 1, 2)
(-2, 0, 0, 2)
'''
class Solution(object):
def fourSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[List[int]]
"""
if len(nums) < 4:
return []
result = set()
sumsIndexes = {}
# Get all two elements' sum and indexes map
for i in range(len(nums)):
for j in range(i + 1, len(nums)):
if nums[i] + nums[j] in sumsIndexes:
sumsIndexes[nums[i] + nums[j]].append((i, j))
else:
sumsIndexes[nums[i] + nums[j]] = [(i, j)]
for i in range(len(nums)):
for j in range(i + 1, len(nums)):
sumNeeded = target - (nums[i] + nums[j])
if sumNeeded in sumsIndexes:
for index in sumsIndexes[sumNeeded]:
if index[0] > j:
result.add(tuple(sorted([nums[i], nums[j], nums[index[0]], nums[index[1]]])))
# Format result with list[list] pattern
result = [list(l) for l in result]
return result
if __name__ == "__main__":
assert Solution().fourSum([1, 0, -1, 0, -2, 2], 0) == [[-1, 0, 0, 1], [-2, 0, 0, 2], [-2, -1, 1, 2]]