欢迎光临散文网 会员登陆 & 注册

leetcode 792. Number of Matching Subsequences

2022-12-24 13:16 作者:您是打尖儿还是住店呢  | 我要投稿


Medium

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.

  • For example, "ace" is a subsequence of "abcde".

 

Example 1:

Input: s = "abcde", words = ["a","bb","acd","ace"]Output: 3Explanation: There are three strings in words that are a subsequence of s: "a", "acd", "ace".

Example 2:

Input: s = "dsahjpjauf", words = ["ahjpjau","ja","ahbwzgqnuk","tnmlanowax"]Output: 2

 

Constraints:

  • 1 <= s.length <= 5 * 104

  • 1 <= words.length <= 5000

  • 1 <= words[i].length <= 50

  • s and words[i] consist of only lowercase English letters.

用map就超时,set就可以,真的是遇得到。。。


Java

Runtime124 ms

Beats

72.89%

Memory43.3 MB

Beats

95.29%


leetcode 792. Number of Matching Subsequences的评论 (共 条)

分享到微博请遵守国家法律