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

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&

你可能感兴趣的:(Python,算法,LeetCode,leetcode,算法,Python,面试,字符串)