Leetcode 每日一题 40 组合2
題目描述
給定一個數組 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]
]
來源:力扣(LeetCode)
鏈接:https://leetcode-cn.com/problems/combination-sum-ii
著作權歸領扣網絡所有。商業轉載請聯系官方授權,非商業轉載請注明出處。
解答
class Solution:
def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:
res=[]
cand=sorted(candidates)
def find(s,curr,remain):
for i in range(s,len(cand)):
if cand[i]>remain:
return
elif cand[i]==remain:
if curr+[cand[i]] not in res:
res.append(curr+[cand[i]])
else:
find(i+1,curr+[cand[i]],remain-cand[i])
find(0,[],target)
return res
參考
Leetcode題庫
總結
以上是生活随笔為你收集整理的Leetcode 每日一题 40 组合2的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php 怎么使循环少一次,PHP-如何让
- 下一篇: Go版本升级后编译出错:Load red