forked from soapyigu/LeetCode-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FourSum.swift
59 lines (53 loc) · 2.01 KB
/
FourSum.swift
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
58
59
/**
* Question Link: https://leetcode.com/problems/4sum/
* Primary idea: Sort the array, and traverse it, increment left or decrease right
* predicated on their sum is greater or not than the target
* Time Complexity: O(n^3), Space Complexity: O(nC4)
*/
class FourSum {
func fourSum(nums: [Int], _ target: Int) -> [[Int]] {
let nums = nums.sort({$0 < $1})
var threeSum = 0
var twoSum = 0
var left = 0
var right = 0
var res = [[Int]]()
guard nums.count >= 4 else {
return res
}
for i in 0 ..< nums.count - 3 {
guard i == 0 || nums[i] != nums[i - 1] else {
continue
}
threeSum = target - nums[i]
for j in i + 1 ..< nums.count - 2 {
guard j == i + 1 || nums[j] != nums[j - 1] else {
continue
}
twoSum = threeSum - nums[j]
left = j + 1
right = nums.count - 1
while left < right {
if nums[left] + nums[right] == twoSum {
res.append([nums[i], nums[j], nums[left], nums[right]])
repeat {
left += 1
} while left < right && nums[left] == nums[left - 1]
repeat {
right -= 1
} while left < right && nums[right] == nums[right + 1]
} else if nums[left] + nums[right] < twoSum {
repeat {
left += 1
} while left < right && nums[left] == nums[left - 1]
} else {
repeat {
right -= 1
} while left < right && nums[right] == nums[right + 1]
}
}
}
}
return res
}
}