Combination Sum
Input: candidates = [2,3,6,7], target = 7,
A solution set is:
[
[7],
[2,2,3]
]Input: candidates = [2,3,5], target = 8,
A solution set is:
[
[2,2,2,2],
[2,3,3],
[3,5]
]Analysis
Solution
Last updated
Input: candidates = [2,3,6,7], target = 7,
A solution set is:
[
[7],
[2,2,3]
]Input: candidates = [2,3,5], target = 8,
A solution set is:
[
[2,2,2,2],
[2,3,3],
[3,5]
]Last updated
class Solution {
public List<List<Integer>> combinationSum(int[] candidates, int target) {
List<List<Integer>> ans = new ArrayList<>();
Arrays.sort(candidates);
helper(target, 0, 0, candidates, new ArrayList<>(), ans);
return ans;
}
private void helper(int target, int sum, int startIdx, int[] candidates,
List<Integer> combo, List<List<Integer>> ans) {
if (sum == target) {
ans.add(new ArrayList<Integer>(combo));
return;
}
if (sum > target) {
return;
}
for (int i = startIdx; i < candidates.length; i++) {
combo.add(candidates[i]);
// the startIdx is not i + 1 since we can reuse same elements
helper(target, sum + candidates[i], i, candidates, combo, ans);
combo.remove(combo.size() - 1);
}
}
}