LeetCode in Kotlin

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:

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:

Solution

class Solution {
    fun stringMatching(words: Array<String>): List<String> {
        val set: MutableSet<String> = HashSet()
        for (word in words) {
            for (s in words) {
                if (word != s && word.length < s.length && s.contains(word)) {
                    set.add(word)
                }
            }
        }
        return ArrayList(set)
    }
}
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy