leetcode 百天解题 - day 19 - 1408. 数组中的字符串匹配
题目名称
给你一个字符串数组 words ,数组中的每个字符串都可以看作是一个单词。请你按 任意 顺序返回 words 中是其他单词的子字符串的所有单词。
如果你可以删除 words[j] 最左侧和/或最右侧的若干字符得到 word[i] ,那么字符串 words[i] 就是 words[j] 的一个子字符串。
示例
输入:words = [“mass”,”as”,”hero”,”superhero”]
输出:[“as”,”hero”]
解释:”as” 是 “mass” 的子字符串,”hero” 是 “superhero” 的子字符串。
[“hero”,”as”] 也是有效的答案。
题解
无难点,略
答案
1 | var stringMatching = function(words) { |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment
DisqusValine