第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在多個(gè)詞典中查找常見字母 - python

在多個(gè)詞典中查找常見字母 - python

至尊寶的傳說 2023-05-09 14:49:31
我正在用給定的字符串制作代碼返回字符。我知道使用計(jì)數(shù)器功能更容易使用,但我盡量不使用它。這是我的代碼class Solution:    def commonChars(self, A):        dic = {}        for i in range(len(A)):            A[i] = list(A[i])            dic[i] = self.checkLetter(A[i])        print(dic)            def checkLetter(self, Letter_list) :         letter_cnt = {}        for l in Letter_list:            if l in letter_cnt : letter_cnt[l] += 1            else : letter_cnt[l] = 1        return letter_cnt我已經(jīng)用字典制作了一個(gè)字母計(jì)數(shù)器,但我不知道下一步該做什么。你能給我一個(gè)提示嗎?# given input_1 : ["bella","label","roller"]# expected output is e,l,l because it is common in every string in the given list>>> ["e","l","l"]# result of my code>>> {0: {'a': 1, 'b': 1, 'e': 1, 'l': 2}, 1: {'a': 1, 'b': 1, 'e': 1, 'l': 2}, 2: {'r': 2, 'e': 1, 'l': 2, 'o': 1}}# given input_2 : ["cool","lock","cook"]# expected output>>> ["c","o"]
查看完整描述

1 回答

?
慕哥9229398

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超6個(gè)贊

reduce.only 添加一行的可能解決方案:


from functools import reduce



class Solution:

    def commonChars(self, A):

        dic = {}

        for i in range(len(A)):

            A[i] = list(A[i])

            dic[i] = self.checkLetter(A[i])

        print([char for char, count in reduce(lambda x, y:{k:min(x[k], y[k]) for k,v in x.items() if y.get(k)}, dic.values()).items() for _ in range(count)])


    def checkLetter(self, Letter_list):

        letter_cnt = {}

        for l in Letter_list:

            if l in letter_cnt:

                letter_cnt[l] += 1

            else:

                letter_cnt[l] = 1

        return letter_cnt



s = Solution()

s.commonChars(["bella","label","roller"])

# ['e', 'l', 'l']

s.commonChars(["cool","lock","cook"])

# ['c', 'o']

拆分它:


result_dict = reduce(lambda x, y:{k:min(x[k], y[k]) for k,v in x.items() if y.get(k)}, dic.values())


print([char for char, count in result_dict.items() for _ in range(count)])


查看完整回答
反對 回復(fù) 2023-05-09
  • 1 回答
  • 0 關(guān)注
  • 161 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)