LeetCode 2255. Count Prefixes of a Given String
You are given a string array words and a string s, where words[i] and s comprise only of lowercase English letters.
Return the number of strings in words that are a prefix of s.
A prefix of a string is a substring that occurs at the beginning of the string. A substring is a contiguous sequence of characters within a string.
Example 1:
Input: words = ["a","b","c","ab","bc","abc"], s = "abc"Output: 3Explanation:The strings in words which are a prefix of s = "abc" are: "a", "ab", and "abc". Thus the number of strings in words which are a prefix of s is 3.
Example 2:
Input: words = ["a","a"], s = "aa"Output: 2Explanation:Both of the strings are a prefix of s. Note that the same string can occur multiple times in words, and it should be counted each time.
Constraints:
1 <= words.length <= 10001 <= words[i].length, s.length <= 10words[i]andsconsist of lowercase English letters only.
Accepted
35,725
Submissions
48,867
能上路就行;跑的慢点就慢点了。。。
Runtime: 3 ms, faster than 22.72% of Java online submissions for Count Prefixes of a Given String.
Memory Usage: 44.4 MB, less than 6.85% of Java online submissions for Count Prefixes of a Given String.

