349. 两个数组的交集(Intersection of Two Arrays)
给定两个数组,编写一个函数来计算它们的交集。
示例1:
输入: nums1 = [1,2,2,1], nums2 = [2,2]
输出: [2]
示例2:
输入: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
输出: [9,4]
说明:
输出结果中的每个元素一定是唯一的。
我们可以不考虑输出结果的顺序。
思路
方法一: 去重,然后判断是否在另一个容器中
class Solution(object):
def intersection(self, nums1, nums2):
"""
:type nums1: List[int]
:type nums2: List[int]
:rtype: List[int]
"""
s1 = set(nums1)
re = []
for i in nums2:
if i in s1:
re.append(i)
return list(set(re))
结果:
执行用时 : 80 ms, 在Intersection of Two Arrays的Python提交中击败了18.32% 的用户
内存消耗 : 12 MB, 在Intersection of Two Arrays的Python提交中击败了15.75% 的用户
提交时间 | 状态 | 执行用时 | 内存消耗 | 语言 |
几秒前 | 通过 | 80 ms | 12MB | python |
方法二:使用集合特性,取交集
class Solution(object):
def intersection(self, nums1, nums2):
"""
:type nums1: List[int]
:type nums2: List[int]
:rtype: List[int]
"""
return list(set(nums1) & set(nums2))
结果:
执行用时 : 48 ms, 在Intersection of Two Arrays的Python提交中击败了100.00% 的用户
内存消耗 : 12 MB, 在Intersection of Two Arrays的Python提交中击败了15.34% 的用户
提交时间 | 状态 | 执行用时 | 内存消耗 | 语言 |
几秒前 | 通过 | 48 ms | 12MB | python |