LeetCode40.組合總和|| JavaScript
阿新 • • 發佈:2019-02-18
參考 class com 一次 art lse style pat var
給定一個數組 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] ]
答案參考:
/** * @param {number[]} candidates * @param {number} target * @return {number[][]} */ var combinationSum2 = function(candidates, target) { var item=[],path=[]; candidates=candidates.sort(function(a,b){return a-b}) GG(candidates,target,target,item,path,0) return item functionGG(candidates,target,remain,item,path,start){ if(remain<0) return; if(remain==0){ path=path.slice() item.push(path); } else{ for(var i=start;i<candidates.length;i++){ if(i>start&&candidates[i]==candidates[i-1])continue; path.push(candidates[i]) GG(candidates,target,remain-candidates[i],item,path,i+1) path.pop() } } } };
LeetCode40.組合總和|| JavaScript