[leetcode] 39. Combination Sum

불불이·2021년 2월 4일
0

문제

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

1 <= candidates.length <= 30
1 <= candidates[i] <= 200
All elements of candidates are distinct.
1 <= target <= 500

정답

function combinationSum(candidates, target) {
    let nums = []; // 집어넣을 숫자들
    let point = 0;
    let answer = [];
    backtracking(candidates, target, nums, point);
    console.log(answer);

    function backtracking(candidates, target, nums, point) {
        if (target < 0) return;

        if (target == 0) {
            return answer.push(nums.slice());
        }

        for (let i = point; i < candidates.length; i++) {
            nums.push(candidates[i]);
            backtracking(candidates, target - candidates[i], nums, i);
            nums.pop();
        }
    }

};

combinationSum([2, 3, 5], 8);
profile
https://nibble2.tistory.com/ 둘 중에 어떤 플랫폼을 써야할지 아직도 고민중인 사람

1개의 댓글

comment-user-thumbnail
2021년 12월 25일

I found that solution is very popular and helpful: https://youtu.be/4fCRTF9lZcI

답글 달기