Skip to content
This repository was archived by the owner on Sep 22, 2021. It is now read-only.

1002 - Find Common Characters #37

Closed
vJechsmayr opened this issue Sep 23, 2020 · 2 comments · Fixed by #56
Closed

1002 - Find Common Characters #37

vJechsmayr opened this issue Sep 23, 2020 · 2 comments · Fixed by #56
Assignees

Comments

@vJechsmayr
Copy link
Owner

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:

Input: ["bella","label","roller"]
Output: ["e","l","l"]

Example 2:

Input: ["cool","lock","cook"]
Output: ["c","o"]

Note:

  1. 1 <= A.length <= 100
  2. 1 <= A[i].length <= 100
  3. A[i][j] is a lowercase letter

Code

class Solution:
    def commonChars(self, A: List[str]) -> List[str]:

Link To The LeetCode Problem

LeetCode

@kandasamyc
Copy link
Contributor

Can I work on this?

@vJechsmayr
Copy link
Owner Author

@SamC302 sure, go ahead 😄

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants