1408. String Matching in an Array
Easy
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:
Example 2:
Example 3:
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: 3 ms, faster than 81.48%
Memory Usage: 2.4 MB, less than 70.37%
Last updated