-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0030-substring-with-concatenation-of-all-words.js
54 lines (47 loc) · 1.47 KB
/
0030-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
51
52
53
54
/**
* 30. Substring with Concatenation of All Words
* https://leetcode.com/problems/substring-with-concatenation-of-all-words/
* Difficulty: Hard
*
* You are given a string s and an array of strings words. All the strings of words are of the same
* length.
*
* A concatenated substring in s is a substring that contains all the strings of any permutation of
* words concatenated.
*
* - For example, if words = ["ab","cd","ef"], then "abcdef", "abefcd", "cdabef", "cdefab", "efabcd",
* and "efcdab" are all concatenated strings. "acdbef" is not a concatenated substring because it is
* not the concatenation of any permutation of words.
*
* Return the starting indices of all the concatenated substrings in s. You can return the answer in
* any order.
*/
/**
* @param {string} s
* @param {string[]} words
* @return {number[]}
*/
var findSubstring = function(s, words) {
if (!words || words.length === 0) {
return [];
}
const result = [];
const map = {};
const count = words[0].length;
words.forEach(word => map[word] = ~~map[word] + 1);
for (let i = 0; i < s.length - words.length * count + 1; i++) {
const temp = Object.assign({}, map);
for (let j = i; j < i + words.length * count; j += count) {
const key = s.slice(j, j + count);
if (!temp[key]) {
break;
} else if (--temp[key] === 0) {
delete temp[key];
}
}
if (Object.keys(temp).length === 0) {
result.push(i);
}
}
return result;
};