Leetcode no.349 the intersection of two arrays (Python implementation)

Source: Internet
Author: User
Source

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

Title Description

Given two arrays, write a function to calculate the intersection of them.
Example:
Given num1= [1, 2, 2, 1], nums2 = [2, 2], return [2].
Tips:
Each element in the result must be unique.
We can not consider the order of the output results.

Code implementation
class Solution(object):    def intersection(self, nums1, nums2):        """        :type nums1: List[int]        :type nums2: List[int]        :rtype: List[int]        """        nums = set(nums1) & set(nums2)        if nums:            nums = list(nums)        else:            nums = []        return nums

Leetcode no.349 the intersection of two arrays (Python implementation)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.