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.
Example 1:
1 | Input: candidates = [2,3,6,7], target = 7 |
Example 2:
1 | Input: candidates = [2,3,5], target = 8 |
Example 3:
1 | Input: candidates = [2], target = 1 |
Example 4:
1 | Input: candidates = [1], target = 1 |
Example 5:
1 | Input: candidates = [1], target = 2 |
找數字組合。
- 目標比列表中最小值還小就返回空
target < min(candidates)
- 下次迭代用target-candidate當新target
self.combinationSum(candidates[i:],target-candidates[i])
- 避免重複選取之前選過的
candidates[i:]
1 | Time: O(n^2), Space: O(n) |
如果你覺得這篇文章很棒,請你不吝點讚 (゚∀゚)