Leetcode 884. 两句话中的不常见单词 (Python Count和split的使用)

2022/1/30 20:07:05

本文主要是介绍Leetcode 884. 两句话中的不常见单词 (Python Count和split的使用),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

可以将两个cnt合并到一起,然后直接看出现次数为1的单词即可。

这里使用了Python的技巧,代码特别简单。

class Solution:
    def uncommonFromSentences(self, s1: str, s2: str) -> List[str]:
        freq = Counter(s1.split()) + Counter(s2.split())
        
        ans = list()
        for word, occ in freq.items():
            if occ == 1:
                ans.append(word)
        
        return ans

 



这篇关于Leetcode 884. 两句话中的不常见单词 (Python Count和split的使用)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程