leetcode?pythonIntersection of Two Arrays
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode?pythonIntersection of Two Arrays相关的知识,希望对你有一定的参考价值。
#-*- 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?pythonIntersection of Two Arrays的主要内容,如果未能解决你的问题,请参考以下文章