Problem 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.
Key Insights
- A substring can be found using the built-in substring search capabilities of most programming languages.
- The problem requires counting occurrences, which means duplicates in patterns should be considered.
- The maximum constraints allow for a straightforward solution without performance concerns due to the relatively small sizes.
Space and Time Complexity
Time Complexity: O(n * m), where n is the number of patterns and m is the average length of the patterns.
Space Complexity: O(1), as we're only using a counter variable regardless of input size.
Solution
To solve this problem, we can use a simple loop to iterate through each pattern in the array and check if it is a substring of the given word. We utilize the in
operator for substring checking, which is efficient and straightforward.
- Initialize a counter to zero.
- For each pattern in the patterns list, check if it exists in the word.
- If it does, increment the counter.
- Return the counter after checking all patterns.