LeetCode 1408. String Matching in an Array Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
1408. String Matching in an Array

Description

Given an array of string words, return all strings in words that are a substring of another word. You can return the answer in any order.

 

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.

 

Constraints:

  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 30
  • words[i] contains only lowercase English letters.
  • All the strings of words are unique.

Solutions

Solution 1: Brute Force Enumeration

We directly enumerate all strings words[i], and check whether it is a substring of other strings. If it is, we add it to the answer.

The time complexity is O(n3), and the space complexity is O(n). Where n is the length of the string array.

PythonJavaC++GoTypeScriptRust
class Solution: def stringMatching(self, words: List[str]) -> List[str]: ans = [] for i, s in enumerate(words): if any(i != j and s in t for j, t in enumerate(words)): ans.append(s) return ans(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !