Intersection of Two Arrays-II - Leet Code Solution

Gorav Singal

September 01, 2020

TL;DR

Use a HashMap to count elements in the first array, then iterate the second array decrementing counts. Elements with remaining counts form the intersection.

Intersection of Two Arrays-II - Leet Code Solution

Problem Statement

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

Example

# Example 1:
Input: nums1 = [1,2,2,1], nums2 = [2,2]
Output: [2,2]

# Example 2:
Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
Output: [4,9]

Note:

  • Each element in the result should appear as many times as it shows in both arrays.
  • The result can be in any order.

Solution using Extra Memory

We need to have some sort of counter for every number that conveys what is the occurrence of that number.

For Input

nums1 = [1,2,2,1], nums2 = [2,2]

If we create a HashMap<Integer, Integer> which maintains count of each number in an array.

# HashMap for nums1 array
1 -> 2
2 -> 2

In first pass, we can populate this HashMap, and in second pass we can iterate over second array and compare numbers from this map. We need to decrement count of matched number on each match.

Code

public int[] intersect_extraMemory(int[] nums1, int[] nums2) {
   if (nums1.length == 0 || nums2.length == 0) {
      return new int[] {};
   }
   
   //prepare map with number of occurence of each number
   Map<Integer, Integer> map = new HashMap<Integer, Integer>();
   for (int j=0; j<nums2.length; j++) {
      Integer count = map.getOrDefault(nums2[j], 0);
      count ++;
      
      map.put(nums2[j], count);
   }
   
   List<Integer> res = new ArrayList<Integer>();
   for (int i=0; i<nums1.length; i++) {
      int count = map.getOrDefault(nums1[i], 0);
      if (count > 0) {
         res.add(nums1[i]);

         count --;
         map.put(nums1[i], count);
      }
   }
   
   //copy the result array
   int[] r = new int[res.size()];
   for (int i=0; i<res.size(); i++) {
      r[i] = res.get(i);
   }
   
   return r;
}

Complexity

The code runs in O(m + n), where m and n are the length of two arrays respectively.

Solution using Sorting

If we sort the two arrays. We can start comparing the numbers from begining. Since we know the numbers are in increasing order. We can increment the indexes of the two arrays on each match and non-match.

i.e. For example, we found the number from first array is smaller than one in second array. It means, we need to increment index from first array.
Similarly if we found a match, we need to increment indexes of both the arrays.

Lets see how.

Code

public int[] intersect(int[] nums1, int[] nums2) {
   if (nums1.length == 0 || nums2.length == 0) {
      return new int[] {};
   }
   Arrays.sort(nums1);
   Arrays.sort(nums2);
   
   int i=0;
   int j=0;
   
   List<Integer> res = new ArrayList<Integer>();
   while (i<nums1.length && j<nums2.length) {
      if (nums1[i] == nums2[j]) {
         res.add(nums1[i]);
         i++;
         j++;
      }
      else if (nums1[i] < nums2[j]) {
         i++;
      }
      else {
         j++;
      }
   }
   
   //copy the result array
   int[] r = new int[res.size()];
   for (i=0; i<res.size(); i++) {
      r[i] = res.get(i);
   }
   
   return r;
}

Complexity

The complexity is O(mLog(m) + nLog(n)) due to sorting.

Share

Related Posts

Replace all spaces in a string with %20

Replace all spaces in a string with %20

Problem Statement Replace all spaces in a string with ‘%20’ (three characters…

Valid Palindrome - Leet Code Solution

Valid Palindrome - Leet Code Solution

Problem Statement Given a string, determine if it is a palindrome, considering…

Valid Anagrams - Leet Code Solution

Valid Anagrams - Leet Code Solution

Problem Statement Given two strings s and t , write a function to determine if t…

Rotate Image - Leet Code Solution

Rotate Image - Leet Code Solution

Problem Statement You are given an n x n 2D matrix representing an image, rotate…

Validate Sudoku - Leet Code Solution

Validate Sudoku - Leet Code Solution

Problem Statement Determine if a 9x9 Sudoku board is valid. Only the filled…

Plus One - Leet Code Solution

Plus One - Leet Code Solution

Problem Statement Given a non-empty array of digits representing a non-negative…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…