-
Notifications
You must be signed in to change notification settings - Fork 139
/
FourSum.swift
52 lines (47 loc) · 1.74 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
class FourSum {
func fourSum(_ nums: [Int], _ target: Int) -> [[Int]] {
let nums = nums.sorted(by: <)
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
}
}