-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path216.java
46 lines (37 loc) · 1.21 KB
/
216.java
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
/**
* 找出所有相加之和为 n 的 k 个数的组合。组合中只允许含有 1 - 9 的正整数,并且每种组合中不存在重复的数字。
说明:
所有数字都是正整数。
解集不能包含重复的组合。
示例 1:
输入: k = 3, n = 7
输出: [[1,2,4]]
示例 2:
输入: k = 3, n = 9
输出: [[1,2,6], [1,3,5], [2,3,4]]
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/combination-sum-iii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
class Solution {
List<List<Integer>> ans = new LinkedList<>();
public List<List<Integer>> combinationSum3(int k, int n) {
List<Integer> list = new LinkedList<>();
helper(k,n,1,list);
return ans;
}
private void helper(int k, int n, int start, List<Integer> l){
if(k==0 && n==0){
ans.add(l);
return;
}
for(int i=start;i<10;i++){
List<Integer> temp = new LinkedList<>(l);
if(!temp.contains(i)){
if(i>n) continue;
temp.add(i);
helper(k-1,n-i,i+1,temp);
}
}
}
}