-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcombination_sum_ii.rs
46 lines (42 loc) · 1.15 KB
/
combination_sum_ii.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
#![allow(dead_code)]
pub fn combination_sum2(candidates: Vec<i32>, target: i32) -> Vec<Vec<i32>> {
let mut candidates = candidates;
candidates.sort();
fn backtracking(
target: i32,
start: usize,
candidates: &Vec<i32>,
path: &mut Vec<i32>,
result: &mut Vec<Vec<i32>>,
) {
if target < 0 {
return;
}
if target == 0 {
result.push(path.clone());
return;
}
for i in start..candidates.len() {
if i > start && candidates[i] == candidates[i - 1] {
continue;
}
path.push(candidates[i]);
backtracking(target - candidates[i], i + 1, candidates, path, result);
path.pop();
}
}
let mut result = Vec::new();
backtracking(target, 0, &candidates, &mut Vec::new(), &mut result);
return result;
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_combination_sum_ii() {
assert_eq!(
combination_sum2(vec![10, 1, 2, 7, 6, 1, 5], 8),
vec![vec![1, 1, 6], vec![1, 2, 5], vec![1, 7], vec![2, 6]]
);
}
}