-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path139_word_break.js
40 lines (31 loc) · 938 Bytes
/
139_word_break.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
39
40
/**
* https://leetcode.com/problems/word-break/
* @param {string} s
* @param {string[]} wordDict
* @return {boolean}
*/
const any = l => l.reduce((a, b) => a || b, false)
var wordBreak = function(s, wordDict) {
const compare = (from, to, word) => {
if (word.length !== to - from) return false;
for (let i = 0; i < word.length; i++) {
if (word[i] !== s[from + i])
return false
}
return true
}
const memo = Array(s.length + 1).fill(-1)
const testFrom = index => {
if (s.length === index) return true
const memoized = memo[index]
if (-1 != memoized) return memoized
const ret = any(wordDict.map(word => (
compare(index, index + word.length, word)
? testFrom(index + word.length)
: false
)))
memo[index] = ret
return ret
}
return testFrom(0)
};