[leetcode] 39. Combination Sum
1606 ワード
質問する
Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of candidates where the chosen numbers sum to target. You may return the combinations in any order.
The same number may be chosen from candidates an unlimited number of times. Two combinations are unique if the frequency of at least one of the chosen numbers is different.
It is guaranteed that the number of unique combinations that sum up to target is less than 150 combinations for the given input.
Constraints
答えを出す。
function combinationSum(candidates, target) {
let nums = []; // 집어넣을 숫자들
// let sum = [];
let point = 0;
let answer = [];
backtracking(candidates, target, nums, point);
console.log(answer);
function backtracking(candidates, target, nums, point) {
if (target == 0) {
return answer.push(nums.slice());
}
for (let i = point; i < candidates.length; i++) {
if (target < 0) return;
nums.push(candidates[i]);
target = target - candidates[i];
backtracking(candidates, target, nums, i);
nums.pop();
target = target + candidates[i];
}
}
};
combinationSum([2, 3, 5], 8);
Reference
この問題について([leetcode] 39. Combination Sum), 我々は、より多くの情報をここで見つけました https://velog.io/@nibble/leetcode-39.-Combination-Sumテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol