Leetcode #349 Intersection of Two Arrays

    xiaoxiao2021-03-25  77

    Description

    Given two arrays, write a function to compute their intersection.

    Example

    Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2].

    Note:

    Each element in the result must be unique.The result can be in any order.

    Explain

    python写真的太简洁

    Code

    class Solution(object): def intersection(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ import collections return list(set(collections.Counter(nums1) & collections.Counter(nums2)))
    转载请注明原文地址: https://ju.6miu.com/read-17720.html

    最新回复(0)