# 1002 Find Common Characters

善用 array.filter 特性

LeetCode

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.

input: 給一小寫字串陣列
output: 找出相同的字母
Example 1:

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

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

Note:

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

/**
 * @param {string[]} A
 * @return {string[]}
 */
var commonChars = function(A) {
    
};

怎麼解

第一想法會是一個一個找兩個 for 迴圈

我會用 map 先記字母然後幾次

Last updated

Was this helpful?