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

【leetcode?python】Intersection of Two Arrays

时间:2016-10-12 19:16:04      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

#-*- coding: UTF-8 -*-
#求两个集合的交集
class Solution(object):
    def intersection(self, nums1, nums2):
       resultList=list(set(nums1).intersection(set(nums2)))
       return resultList

sol=Solution()
print sol.intersection(nums1=[1, 2, 2, 1], nums2=[2,2])

【leetcode?python】Intersection of Two Arrays

标签:

原文地址:http://www.cnblogs.com/kwangeline/p/5953697.html

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