leetcode-349 | 两个数组的交集

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 ms12MBpython

方法二:使用集合特性,取交集

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 ms12MBpython

   Reprint policy


《leetcode-349 | 两个数组的交集》 by 梦否 is licensed under a Creative Commons Attribution 4.0 International License
 Previous
leetcode-350 | 两个数组的交集II leetcode-350 | 两个数组的交集II
350. 两个数组的交集 II(Intersection of Two Arrays II)给定两个数组,编写一个函数来计算它们的交集。 示例 1:输入: nums1 = [1,2,2,1], nums2 = [2,2]输出: [2,2]
2019-04-25
Next 
leetcode-76 | 最小覆盖子串 leetcode-76 | 最小覆盖子串
76. 最小覆盖子串(Find All Anagrams in a String)给定一个字符串 S 和一个字符串 T,请在 S 中找出包含 T 所有字母的最小子串。 示例 :输入: S = “ADOBECODEBANC”, T = “A
2019-04-25
  TOC