-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsubstring-with-concatenation-of-all-words.js
50 lines (49 loc) · 1.57 KB
/
substring-with-concatenation-of-all-words.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
41
42
43
44
45
46
47
48
49
50
/**
* @param {string} s
* @param {string[]} words
* @return {number[]}
*/
var findSubstring = function(s, words) {
if (s.length <=0 || words.length <= 0) {
return [];
}
var incides = [];
var map = {};
words.map(function(word) {
map[word] = map[word] ? ++map[word] : 1;
});
var wl = words[0].length;
var wc = words.length;
var len = s.length - wl;
for (var i = 0; i < wl; i++) {
var countMap = {};
var count = 0;
for (var j = i, start = j; j <= len; j +=wl) {
var currentWord = s.slice(j, j + wl);
if (map[currentWord] && (!countMap[currentWord] || countMap[currentWord] < map[currentWord])) {
count ++;
countMap[currentWord] = countMap[currentWord] ? ++countMap[currentWord] : 1;
if (count < wc) {
} else {
incides.push(start);
countMap[s.slice(start, start + wl)]--;
count --;
start += wl;
}
} else if (!map[currentWord]) {
count = 0;
countMap = {};
start = j + wl;
} else {
countMap[currentWord] ++;
while(countMap[currentWord] > map[currentWord]) {
var str1 = s.slice(start, start + wl);
countMap[str1]--;
if (countMap[str1] < map[str1]) count--;
start += wl;
}
}
}
}
return incides;
};