标签:style color items code leetcode common elf def from
class Solution: def uncommonFromSentences(self, A: str, B: str) -> List[str]: return [v for v, n in collections.Counter(A.split()+B.split()).items() if n == 1]
Leetcode 884. Uncommon Words from Two Sentences
标签:style color items code leetcode common elf def from
原文地址:https://www.cnblogs.com/zywscq/p/10699954.html