Created
January 29, 2020 15:34
-
-
Save vicxruiz/38ab9b078f0cd8481ad880aa851127fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
Input: ["bella","label","roller"] | |
Output: ["e","l","l"] | |
Example 2: | |
Input: ["cool","lock","cook"] | |
Output: ["c","o"] | |
func commonChars(_ A: [String]) -> [String] { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment