-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1408 String Matching in an Array.js
More file actions
48 lines (36 loc) · 1.11 KB
/
1408 String Matching in an Array.js
File metadata and controls
48 lines (36 loc) · 1.11 KB
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
/**
*
* Example 1:
Input: words = ["mass","as","hero","superhero"]
Output: ["as","hero"]
Explanation: "as" is substring of "mass" and "hero" is substring of "superhero".
["hero","as"] is also a valid answer.
Example 2:
Input: words = ["leetcode","et","code"]
Output: ["et","code"]
Explanation: "et", "code" are substring of "leetcode".
Example 3:
Input: words = ["blue","green","bu"]
Output: []
Explanation: No string of words is substring of another string.
*/
/**
* @param {string[]} words
* @return {string[]}
*/
var stringMatching = function(words) {
const matches = [];
for (let i = 0; i < words.length; i++) {
const currentWord = words[i];
for (let j = 0; j < words.length; j++) {
const possibleSubstring = words[j];
if (i === j || currentWord.length > possibleSubstring.length || currentWord === possibleSubstring) {
continue;
}
if (possibleSubstring.includes(currentWord)) {
matches.push(currentWord);
}
}
}
return matches;
};