40. 組合總和 II(C++)
給定一個(gè)候選人編號(hào)的集合?candidates
?和一個(gè)目標(biāo)數(shù)?target
?,找出?candidates
?中所有可以使數(shù)字和為?target
?的組合。
candidates
?中的每個(gè)數(shù)字在每個(gè)組合中只能使用?一次?。
注意:解集不能包含重復(fù)的組合。?
?
示例?1:
輸入: candidates =?[10,1,2,7,6,1,5]
, target =?8
,輸出:[
[1,1,6],
[1,2,5],
[1,7],
[2,6]
]
示例?2:
輸入: candidates =?[2,5,2,1,2], target =?5,輸出:[ [1,2,2], [5] ]
?
提示:
1 <=?candidates.length <= 100
1 <=?candidates[i] <= 50
1 <= target <= 30
刷題代碼
本地調(diào)試代碼
容易忽略的地方
標(biāo)簽: