Leetcode 39 Combination Sum Solution in java | Hindi Coding Community

0

 


Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of candidates where the chosen numbers sum to target. You may return the combinations in any order.

The same number may be chosen from candidates an unlimited number of times. Two combinations are unique if the 

frequency of at least one of the chosen numbers is different.

The test cases are generated such that the number of unique combinations that sum up to target is less than 150 combinations for the given input. 


Example 1:


Input: candidates = [2,3,6,7], target = 7

Output: [[2,2,3],[7]]




public class Solution {
public List<List<Integer>> combinationSum(int[] candidates, int target) {
return combinationSum(candidates, target, 0);
}
public List<List<Integer>> combinationSum(int[] candidates, int target, int start) {
List<List<Integer>> res = new ArrayList<List<Integer>>();
Arrays.sort(candidates);
for (int i = start; i < candidates.length; i++) {
if (candidates[i] <target) {
for (List<Integer> ar : combinationSum(candidates, target - candidates[i], i)) {
ar.add(0, candidates[i]);
res.add(ar);
}
} else if (candidates[i] == target) {
List<Integer> lst = new ArrayList<>();
lst.add(candidates[i]);
res.add(lst);
} else
break;
}
return res;
}
}


Post a Comment

0Comments
Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !