利用python 完成leetcode40 组合总和 II

给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。

candidates 中的每个数字在每个组合中只能使用一次。

说明:

所有数字(包括目标数)都是正整数。
解集不能包含重复的组合。
示例 1:

输入: candidates = [10,1,2,7,6,1,5], target = 8,
所求解集为:
[
[1, 7],
[1, 2, 5],
[2, 6],
[1, 1, 6]
]
示例 2:

输入: candidates = [2,5,2,1,2], target = 5,
所求解集为:
[
[1,2,2],
[5]
]

分析
跟39题差不多,与39题不同的是数不可重复使用,先排序,递归即可
两种情况,对于数组中的每个值
要么现在用这个值,以后可能也用这个值(如果数组中还有的话)
要么永远不用这个值(必须永远不用,比如示例1,如果只是不用当前值的话,在递归中可能会用相等的值,最后导致重复数据的出现)
39题见此
https://blog.csdn.net/qq_37369124/article/details/87648096
代码

 def combinationSum2(self, candidates, target):
        candidates.sort() 
        return self.help(candidates,target)
     
    def help(self, candidates, target):

        if(candidates==[]):return []
 
        if(target

你可能感兴趣的:(leetcode,leetcode,中等)