792.Number-of-Matching-Subsequences
792. Number of Matching Subsequences
题目地址
https://leetcode.com/problems/number-of-matching-subsequences/
题目描述
Given string S and a dictionary of words words, find the number of words[i] that is a subsequence of S.
Example :
Input:
S = "abcde"
words = ["a", "bb", "acd", "ace"]
Output: 3
Explanation: There are three words in words that are a subsequence of S: "a", "acd", "ace".
Note:
All words in words and S will only consists of lowercase letters.
The length of S will be in the range of [1, 50000].
The length of words will be in the range of [1, 5000].
The length of words[i] will be in the range of [1, 50].代码
Approach #1 Next Letter Pointers
Time: O(S.length+∑words[i].length) && Space: O(S.length)
Approach #2 Brute Force [Time Limit Exceeded]
Last updated
Was this helpful?