Combination Sum III(取单个,限制个数)
class Solution:
"""
@param num: Given the candidate numbers
@param target: Given the target number
@return: All the combinations that sum to target
"""
def combinationSum3(self, k,n):
# write your code here
ret = []
self.dfs(k,n, ret, [], 1)
return ret
def dfs(self, k,n, ret, path, start):
if n == 0 and k == 0:
ret.append(list(path))
return
for i in range(start,10):
if i > n:
return
path.append(i)
self.dfs(k-1, n-i, ret, path, i+1)
path.pop()Last updated