0
点赞
收藏
分享

微信扫一扫

LeetCode --- 1967. Number of Strings That Appear as Substrings in Word 解题报告

mm_tang 2023-09-30 阅读 53

Question:

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

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&
举报

相关推荐

0 条评论