Leetcode 349. Intersection of Two Arrays

2023-12-13 13:33:03

Problem

Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must be unique and you may return the result in any order.

Algorithm

Collect all the elements in each list in two visited list and then return the items appear in both visited list.

Code

class Solution:
    def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
        item1 = [0] * 1001
        item2 = [0] * 1001
        for i in nums1:
            item1[i] = 1
        for i in nums2:
            item2[i] = 1

        ans = []
        for i in range(1001):
            if item1[i] and item2[i]:
                ans.append(i)
        return ans

文章来源:https://blog.csdn.net/mobius_strip/article/details/134859891
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。