-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq18_four_sum.rs
82 lines (76 loc) · 1.84 KB
/
q18_four_sum.rs
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
* 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]
* ]
*/
fn four_sum(nums: Vec<i32>, target: i32) -> Vec<Vec<i32>> {
let (mut nums, mut out_nums) = (nums, vec![]);
let length = nums.len();
nums.sort();
if length >= 4 {
for i_a in 0..length - 3 {
let a = nums[i_a];
for i_b in i_a + 1..length - 2 {
let b = nums[i_b];
let (mut start, mut end) = (i_b + 1, length - 1);
while start < end {
let (c, d) = (nums[start], nums[end]);
match a + b + c + d {
sum if sum < target => start += 1,
sum if sum > target => end -= 1,
_ => {
let l = vec![a, b, c, d];
if !super::check_vecs_contain_target(&out_nums, &l) {
out_nums.push(l);
}
start += 1;
end -= 1;
}
}
}
}
}
}
out_nums
}
#[test]
fn q18_test() {
assert_eq!(
four_sum(vec![1, 0, -1, 0, -2, 2], 0),
[[-2, -1, 1, 2], [-2, 0, 0, 2], [-1, 0, 0, 1]]
);
assert_eq!(
four_sum(vec![-4, -3, -2, -1, 0, 0, 1, 2, 3, 4], 0),
[
[-4, -3, 3, 4],
[-4, -2, 2, 4],
[-4, -1, 1, 4],
[-4, -1, 2, 3],
[-4, 0, 0, 4],
[-4, 0, 1, 3],
[-3, -2, 1, 4],
[-3, -2, 2, 3],
[-3, -1, 0, 4],
[-3, -1, 1, 3],
[-3, 0, 0, 3],
[-3, 0, 1, 2],
[-2, -1, 0, 3],
[-2, -1, 1, 2],
[-2, 0, 0, 2],
[-1, 0, 0, 1]
]
);
}