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]
.
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.
Input: words = ["leetcode","et","code"] Output: ["et","code"] Explanation: "et", "code" are substring of "leetcode".
Input: words = ["blue","green","bu"] Output: []
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.
impl Solution {
pub fn string_matching(words: Vec<String>) -> Vec<String> {
let mut ret = Vec::new();
for i in 0..words.len() {
for j in 0..words.len() {
if j != i && words[j].contains(&words[i]) {
ret.push(words[i].clone());
break;
}
}
}
ret
}
}