<p>Given a string <code>s</code> and an array of strings <code>words</code>, return <em>the number of</em><code>words[i]</code><em>that is a subsequence of</em><code>s</code>.</p>
<p>A <strong>subsequence</strong> 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.</p>
<ul>
<li>For example, <code>"ace"</code> is a subsequence of <code>"abcde"</code>.</li>