#349

Intersection of Two Arrays

Easy
ArrayHash TableTwo PointersBinary SearchSortingHash MapArray
LeetCode ↗

Approaches

Brute ForceOptimal
Complexity Comparison
Brute ForceOptimal Solution
Time
O(n²)
O(n)
Space
O(1)
O(n)
💡

Intuition

Time O(n)Space O(n)

Using a set allows us to efficiently track unique elements from both arrays. By converting one of the arrays to a set, we can check for intersections in constant time.

⚙️

Algorithm

4 steps
  1. 1Step 1: Convert nums1 into a set to eliminate duplicates.
  2. 2Step 2: Initialize an empty result list.
  3. 3Step 3: For each element in nums2, check if it exists in the set created from nums1.
  4. 4Step 4: If it exists, add it to the result list.
solution.py7 lines
1def intersection(nums1, nums2):
2    set_nums1 = set(nums1)
3    result = []
4    for num in nums2:
5        if num in set_nums1 and num not in result:
6            result.append(num)
7    return result

Complexity note: The time complexity is O(n) because we traverse nums1 to create a set and then traverse nums2 to find intersections. The space complexity is O(n) due to the storage of the set.

  • 1Using a set allows for efficient lookups.
  • 2Ensuring uniqueness in the result can be done with a set.

Solutions and explanations are original Tejav content. Problem titles © LeetCode — use the LeetCode button above for the full problem statement.