6.两个数组的交集 II(Python)

6.两个数组的交集 II(Python)_第1张图片参考代码

class Solution:
    def intersect(self, nums1, nums2):
        """
        :type nums1: List[int]
        :type nums2: List[int]
        :rtype: List[int]
        """
        res = []
        for i in nums1:
        	if i in nums2:
        		res.append(i)
        		nums2.remove(i)
        return res

你可能感兴趣的:(leetcode(数组),Python,数组,算法)