Problem Description
Given a string s and an array of strings words, return the number of words[i] that is a subsequence of s. A subsequence of a string is a new string generated from the original string with some characters (can be none) deleted without changing the relative order of the remaining characters.
Key Insights
- A subsequence can be formed by deleting some characters from the original string without reordering.
- Efficiently checking if a word is a subsequence can be done using a two-pointer technique or binary search.
- The problem can involve multiple words, requiring an efficient solution to process them collectively.
- Using a hashmap to store the positions of characters in the string s can optimize the subsequence checking process.
Space and Time Complexity
Time Complexity: O(N + W * M), where N is the length of s, W is the number of words, and M is the average length of each word. Space Complexity: O(N), for storing character positions in hashmap.
Solution
To solve the problem, we can utilize a hashmap to store the indices of each character in the string s. For each word in the words array, we can check if it is a subsequence of s by using a two-pointer technique. One pointer traverses the string s, and the other traverses the current word. If we find all characters of the word in s in the correct order, then it is a subsequence.