
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" .
1 <= s.length <= 5 * 10 ^41 <= words.length <= 50001 <= words[i].length <= 50s and words[i] consist of only lowercase English letters.