给定仅有小写字母组成的字符串数组 A
,返回列表中的每个字符串中都显示的全部字符(包括重复字符)组成的列表。例如,如果一个字符在每个字符串中出现 3 次,但不是 4 次,则需要在最终答案中包含该字符 3 次。
你可以按任意顺序返回答案。
示例 1:
输入:["bella","label","roller"] 输出:["e","l","l"]
示例 2:
输入:["cool","lock","cook"] 输出:["c","o"]
提示:
1 <= A.length <= 100
1 <= A[i].length <= 100
A[i][j]
是小写字母
class Solution:
def commonChars(self, words: List[str]) -> List[str]:
freq = [10000] * 26
for word in words:
t = [0] * 26
for c in word:
t[ord(c) - ord('a')] += 1
for i in range(26):
freq[i] = min(freq[i], t[i])
res = []
for i in range(26):
if freq[i] > 0:
res.extend([chr(i + ord("a"))] * freq[i])
return res
class Solution {
public List<String> commonChars(String[] words) {
int[] freq = new int[26];
Arrays.fill(freq, 10000);
for (String word : words) {
int[] t = new int[26];
for (char c : word.toCharArray()) {
++t[c - 'a'];
}
for (int i = 0; i < 26; ++i) {
freq[i] = Math.min(freq[i], t[i]);
}
}
List<String> res = new ArrayList<>();
for (int i = 0; i < 26; ++i) {
while (freq[i]-- > 0) {
res.add(String.valueOf((char) (i + 'a')));
}
}
return res;
}
}
class Solution {
public:
vector<string> commonChars(vector<string>& words) {
vector<int> freq(26, 10000);
for (auto word : words)
{
vector<int> t(26);
for (char c : word)
++t[c - 'a'];
for (int i = 0; i < 26; ++i)
freq[i] = min(freq[i], t[i]);
}
vector<string> res;
for (int i = 0; i < 26; i++)
{
while (freq[i]--)
res.emplace_back(1, i + 'a');
}
return res;
}
};
func commonChars(words []string) []string {
freq := make([]int, 26)
for i := 0; i < 26; i++ {
freq[i] = 10000
}
for _, word := range words {
t := make([]int, 26)
for _, c := range word {
t[c-'a']++
}
for i := 0; i < 26; i++ {
freq[i] = min(freq[i], t[i])
}
}
var res []string
for i := 0; i < 26; i++ {
for j := 0; j < freq[i]; j++ {
res = append(res, string('a'+i))
}
}
return res
}
func min(a, b int) int {
if a < b {
return a
}
return b
}