Determine if a string has all unique characters
Problem Implement an algorithm to determine if a string has all the characters…
September 01, 2020
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:
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.
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;
}
The code runs in O(m + n)
, where m and n are the length of two arrays respectively.
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.
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;
}
The complexity is O(mLog(m) + nLog(n))
due to sorting.
Problem Implement an algorithm to determine if a string has all the characters…
Problem Statement Given an array, rotate the array to the right by k steps…
Problem Statement Given an array nums of n integers and an integer target, find…
Sorting Problems Merge Sort Quick Sort Heap Sort Bubble Sort Selection Sort…
Problem Statement Given two strings s and t , write a function to determine if t…
Min Priority Queue is a data structure which manage a list of keys(values). And…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…