numMatchingSubseq(String s, String[] words) count = 0 for (word in words) if (isSubsequence(word, s)) count += 1