兄弟们
就算浸水桶
咱们的手还是不能停下
一定要继续刷题 继续卷
水桶绝对不是不想刷题的理由
def uncommonFromSentences(self, s1: str, s2: str) -> List[str]:
cnt = defaultdict(int)
for w in s1.split(' '):
cnt[w] += 1
for w in s2.split(' '):
cnt[w] += 1
ans = []
for k, v in cnt.items():
if v==1:
ans.append(k)
return ans