Class Solution

java.lang.Object
g1001_1100.s1002_find_common_characters.Solution

public class Solution extends Object
1002 - Find Common Characters.

Easy

Given a string array words, return an array of all characters that show up in all strings within the words (including duplicates). You may return the answer in any order.

Example 1:

Input: words = [β€œbella”,β€œlabel”,β€œroller”]

Output: [β€œe”,β€œl”,β€œl”]

Example 2:

Input: words = [β€œcool”,β€œlock”,β€œcook”]

Output: [β€œc”,β€œo”]

Constraints:

  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 100
  • words[i] consists of lowercase English letters.
  • Constructor Details

    • Solution

      public Solution()
  • Method Details