摘要:
product 用于求多个可迭代对象的笛卡尔积(Cartesian Product),它跟嵌套的 for 循环等价.即: product(A, B) 和 ((x,y) for x in A for y in B)一样. 它的一般使用形式如下: iterables是可迭代对象,repeat指定iter 阅读全文
摘要:
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] 阅读全文