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

leetcode349 python3 112ms 求两个数组的交集

时间:2018-08-10 19:54:59      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:for   intersect   class   self   list   and   def   append   inter   

class Solution:
    def intersection(self, nums1, nums2):
        """
        :type nums1: List[int]
        :type nums2: List[int]
        :rtype: List[int]
        """
        s = []
        for i in nums1:
            if i not in s and  i in nums2 :
                s.append(i)
        return s
        

leetcode349 python3 112ms 求两个数组的交集

标签:for   intersect   class   self   list   and   def   append   inter   

原文地址:https://www.cnblogs.com/theodoric008/p/9456700.html

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