40. Combination Sum II 组合总和 II
生活随笔
收集整理的這篇文章主要介紹了
40. Combination Sum II 组合总和 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. Combination Sum 組合總和一樣,只不過加了個限制每個數字只能使用一次的條件。
Code
def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:def dfs(start, use, remain):for index, value in enumerate(candidates[start:]):if value == remain and use + [value] not in ans:ans.append(use + [value])elif value < remain:dfs(start + index + 1, use + [value], remain - value)else:return ans = []candidates.sort()dfs(0, [], target)return ans總結
以上是生活随笔為你收集整理的40. Combination Sum II 组合总和 II的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Django 模型字段 —— Image
- 下一篇: Django RestFramework