-
Notifications
You must be signed in to change notification settings - Fork 612
/
18.py
57 lines (45 loc) · 1.48 KB
/
18.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
48
49
50
51
52
53
54
55
56
57
'''
Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target.
Note:
The solution set must not contain duplicate quadruplets.
Example:
Given array nums = [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]]
"""
sumMapping = {}
for index_i in range(len(nums)-1):
for index_j in range(index_i+1, len(nums)):
currSum = nums[index_i] + nums[index_j]
if currSum in sumMapping:
sumMapping[currSum].append((index_i, index_j))
else:
sumMapping[currSum] = [(index_i, index_j)]
result = set()
for key, value in sumMapping.iteritems():
diff = target - key
if diff in sumMapping:
firstSet = value
secondSet = sumMapping[diff]
for (i, j) in firstSet:
for (k, l) in secondSet:
fourlet = [i, j, k, l]
if len(set(fourlet)) != len(fourlet):
continue
fourlist = [nums[i], nums[j], nums[k], nums[l]]
fourlist.sort()
result.add(tuple(fourlist))
return list(result)
# Space : O(N)
# Time: O(N^3)