【题目描述】
给定仅有小写字母组成的字符串数组 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] 是小写字母
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-common-characters
【解题思路】
用max_count统计每个字符出现的最大次数,用count统计每个单词中每个字符出现的最大次数。max_count[i]=min(max_cout[i], count[i]).
需要注意的是几个用法:
在python中,字符转数字ord(ch); 数字转字符chr(num)
append命令是将整个对象加在列表末尾;而extend命令是将新对象中的元素逐一加在列表的末尾。
这道题用Python实现的代码如下:
class Solution(object):
def commonChars(self, A):
"""
:type A: List[str]
:rtype: List[str]
"""
max_count = [101]*26
for char in A:
count = [0]*26
for ch in char:
count[ord(ch)-ord('a')]+=1
for i in range(26):
max_count[i] = min(max_count[i], count[i])
res = []
for i in range(26):
if max_count[i]>0:
res.extend(chr(ord('a')+i)*max_count[i])
return res