Class Solution
java.lang.Object
g1001_1100.s1002_find_common_characters.Solution
1002 - Find Common Characters.<p>Easy</p>
<p>Given a string array <code>words</code>, return <em>an array of all characters that show up in all strings within the</em> <code>words</code> <em>(including duplicates)</em>. You may return the answer in <strong>any order</strong>.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> words = [“bella”,“label”,“roller”]</p>
<p><strong>Output:</strong> [“e”,“l”,“l”]</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> words = [“cool”,“lock”,“cook”]</p>
<p><strong>Output:</strong> [“c”,“o”]</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= words.length <= 100</code></li>
<li><code>1 <= words[i].length <= 100</code></li>
<li><code>words[i]</code> consists of lowercase English letters.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
commonChars
-