-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1408. String Matching in an Array.cpp
More file actions
59 lines (45 loc) · 1.6 KB
/
1408. String Matching in an Array.cpp
File metadata and controls
59 lines (45 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
//link: https://leetcode.com/problems/string-matching-in-an-array/
/*
Given an array of string words. Return all strings in words which is substring of another word in any order.
String words[i] is substring of words[j], if can be obtained removing some characters to left and/or right side of words[j].
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: []
Constraints:
1 <= words.length <= 100
1 <= words[i].length <= 30
words[i] contains only lowercase English letters.
It's guaranteed that words[i] will be unique.
*/
/*
Runtime: 8 ms, faster than 82.73% of C++ online submissions for String Matching in an Array.
Memory Usage: 9 MB, less than 100.00% of C++ online submissions for String Matching in an Array.
*/
bool cmp(string s1, string s2){
return s1.length() < s2.length();
}
class Solution {
public:
vector<string> stringMatching(vector<string>& words) {
set<string> ans;
sort(words.begin(), words.end(), cmp);
for(int i = 0; i < words.size() - 1; i ++){
for(int j = i + 1; j < words.size(); j ++){
if(words[j].find(words[i]) != -1){
ans.insert(words[i]);
}
}
}
vector<string> v(ans.begin(), ans.end());
return v;
}
};