<p>You are given an array of strings <code>words</code> (<strong>0-indexed</strong>).</p>
<p>In one operation, pick two <strong>distinct</strong> indices <code>i</code> and <code>j</code>, where <code>words[i]</code> is a non-empty string, and move <strong>any</strong> character from <code>words[i]</code> to <strong>any</strong> position in <code>words[j]</code>.</p>
<p>Return <code>true</code><em>if you can make<strong> every</strong> string in </em><code>words</code><em><strong>equal </strong>using <strong>any</strong> number of operations</em>,<em> and </em><code>false</code><em>otherwise</em>.</p>