返回介绍

solution / 1900-1999 / 1967.Number of Strings That Appear as Substrings in Word / README_EN

发布于 2024-06-17 01:03:12 字数 3721 浏览 0 评论 0 收藏 0

1967. Number of Strings That Appear as Substrings in Word

中文文档

Description

Given an array of strings patterns and a string word, return _the number of strings in _patterns_ that exist as a substring in _word.

A substring is a contiguous sequence of characters within a string.

 

Example 1:

Input: patterns = ["a","abc","bc","d"], word = "abc"
Output: 3
Explanation:
- "a" appears as a substring in "abc".
- "abc" appears as a substring in "abc".
- "bc" appears as a substring in "abc".
- "d" does not appear as a substring in "abc".
3 of the strings in patterns appear as a substring in word.

Example 2:

Input: patterns = ["a","b","c"], word = "aaaaabbbbb"
Output: 2
Explanation:
- "a" appears as a substring in "aaaaabbbbb".
- "b" appears as a substring in "aaaaabbbbb".
- "c" does not appear as a substring in "aaaaabbbbb".
2 of the strings in patterns appear as a substring in word.

Example 3:

Input: patterns = ["a","a","a"], word = "ab"
Output: 3
Explanation: Each of the patterns appears as a substring in word "ab".

 

Constraints:

  • 1 <= patterns.length <= 100
  • 1 <= patterns[i].length <= 100
  • 1 <= word.length <= 100
  • patterns[i] and word consist of lowercase English letters.

Solutions

Solution 1

class Solution:
  def numOfStrings(self, patterns: List[str], word: str) -> int:
    return sum(p in word for p in patterns)
class Solution {
  public int numOfStrings(String[] patterns, String word) {
    int ans = 0;
    for (String p : patterns) {
      if (word.contains(p)) {
        ++ans;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int numOfStrings(vector<string>& patterns, string word) {
    int ans = 0;
    for (auto& p : patterns) {
      ans += word.find(p) != string::npos;
    }
    return ans;
  }
};
func numOfStrings(patterns []string, word string) (ans int) {
  for _, p := range patterns {
    if strings.Contains(word, p) {
      ans++
    }
  }
  return
}
function numOfStrings(patterns: string[], word: string): number {
  let ans = 0;
  for (const p of patterns) {
    if (word.includes(p)) {
      ++ans;
    }
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文