This repository was archived by the owner on Sep 22, 2021. It is now read-only.
1002 - Find Common Characters #37
Labels
Array
difficulty-easy
good first issue
Good for newcomers
hacktoberfest
HashTable
help wanted
Extra attention is needed
Description of the Problem
Given an array
A
of strings made only from lowercase letters, return a list of all characters that show up in all strings within the list (including duplicates). For example, if a character occurs 3 times in all strings but not 4 times, you need to include that character three times in the final answer.You may return the answer in any order.
Example 1:
Example 2:
Note:
1 <= A.length <= 100
1 <= A[i].length <= 100
A[i][j]
is a lowercase letterCode
Link To The LeetCode Problem
LeetCode
The text was updated successfully, but these errors were encountered: