coding-interview|September 01, 2020|2 min read

Intersection of Two Arrays-II - Leet Code Solution

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.

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…

Move Zeroes - Leet Code Solution

Move Zeroes - Leet Code Solution

Problem Statement Given an array nums, write a function to move all 0’s to the…

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

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…