Leetcode 350. Intersection of Two Arrays II
Posted 周洋的Blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 350. Intersection of Two Arrays II相关的知识,希望对你有一定的参考价值。
python可重集合的操作
class Solution(object): def intersect(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ from collections import Counter c1 = Counter(nums1) c2 = Counter(nums2) return list((c1&c2).elements())
以上是关于Leetcode 350. Intersection of Two Arrays II的主要内容,如果未能解决你的问题,请参考以下文章
[JavaScript 刷题] 哈希表 - 两个数组的交集 II,leetcode 350