码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode NO.349 两个数组的交集 (python实现)

时间:2018-07-05 21:33:57      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:lock   实现   lse   uri   elf   结果   sel   problems   self   

来源

https://leetcode-cn.com/problems/intersection-of-two-arrays/

题目描述

给定两个数组,写一个函数来计算它们的交集。
例子:
给定 num1= [1, 2, 2, 1], nums2 = [2, 2], 返回 [2].
提示:
每个在结果中的元素必定是唯一的。
我们可以不考虑输出结果的顺序。

代码实现

class Solution(object):
    def intersection(self, nums1, nums2):
        """
        :type nums1: List[int]
        :type nums2: List[int]
        :rtype: List[int]
        """
        nums = set(nums1) & set(nums2)
        if nums:
            nums = list(nums)
        else:
            nums = []
        return nums

leetcode NO.349 两个数组的交集 (python实现)

标签:lock   实现   lse   uri   elf   结果   sel   problems   self   

原文地址:https://www.cnblogs.com/everfight/p/leetcode_349.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!