Skip to content

349 intersection of two arrays

349. Intersection of Two Arrays

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

难度:

Easy

Python一句话作弊

class Solution(object):
    def intersection(self, nums1, nums2):
        """
        :type nums1: List[int]
        :type nums2: List[int]
        :rtype: List[int]
        """
        return list(set(nums1).intersection(nums2))

我们一直在努力

apachecn/AiLearning

【布客】中文翻译组