-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path29_combination_sum.js
38 lines (29 loc) · 1.19 KB
/
29_combination_sum.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* https://leetcode.com/problems/combination-sum/
* @param {number[]} candidates
* @param {number} target
* @return {number[][]}
*/
const repeat = (value, repeatCount) => Array(repeatCount).fill(value)
const range = (start, end) => repeat(null, end - start).map((_, i) => start + i)
var combinationSum = function(candidates, target) {
const memo = repeat(null, candidates.length + 1).map(() => repeat(-1, target + 1))
const _combinationSum = (index, target) => {
if (0 === target) return [[]]
if (index === candidates.length) return []
const memoized = memo[index][target]
if (-1 !== memoized) return memoized
const candidate = candidates[index]
const ret = range(0, Math.floor(target/candidate) + 1)
.map(count => {
const nextTarget = target - candidate*count
if (nextTarget < 0) return [];
return _combinationSum(index + 1, nextTarget)
.map(ret => [...repeat(candidate, count), ...ret])
})
.reduce((acc, cur) => [...acc, ...cur], [])
memo[index][target] = ret
return ret
}
return _combinationSum(0, target)
};