Last updated
Was this helpful?
Last updated
Was this helpful?
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:
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.