Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up1002 - Find Common Characters #37
Open
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description of the Problem
Given an array
Aof 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 <= 1001 <= A[i].length <= 100A[i][j]is a lowercase letterCode
Link To The LeetCode Problem
LeetCode