‘Combination Sum’ in LeetCode (Medium)
📌 Problem
https://leetcode.com/problems/combination-sum/
📌 Answer
The point
- backtracking
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
import java.util.List;
class Solution {
public List<List<Integer>> combinationSum(int[] candidates, int target) {
List<List<Integer>> result = new ArrayList<>();
Arrays.sort(candidates);
backtrack(result, new ArrayList<>(), candidates, target, 0);
return result;
}
private void backtrack(List<List<Integer>> list, List<Integer> temp, int[] nums, int remain, int start) {
if (remain < 0) return;
else if (remain == 0) {
// System.out.println("when? ");
list.add(new ArrayList<>(temp));
}
else {
for (int i = start; i < nums.length; i++) {
// System.out.println(temp);
temp.add(nums[i]);
backtrack(list, temp, nums, remain - nums[i], i); // check again until remain become minus
temp.remove(temp.size() - 1);
// System.out.println(temp);
// System.out.println();
}
}
}
}
/**
[Question]
- candidates : distinct integers
- target : a target integer
- return : a list of all unique combinations of candidates where the chosen numbers sum to target
**/
I’m gonna eat sandwich 🥪🥪🥪
Comments powered by Disqus.