LeetCode 350: Intersection of Two Arrays II

Question:- 

Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must appear as many times as it shows in both arrays and you may return the result in any order.

Example 1:

Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
Output: [4,9]
Explanation: [9,4] is also accepted.

Example 2:

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

Solution:-

class Solution {
    public int[] intersect(int[] nums1, int[] nums2) {
        int length1=nums1.length;
         int length2=nums2.length;
        int[] ans=new int[length1*length2];
        int i=0,j=0,k=0;
        Arrays.sort(nums1);
        Arrays.sort(nums2);
        while(i<length1&&j<length2){
            if(nums1[i]>nums2[j]){
                j++;
            }else if(nums1[i]<nums2[j]){
                i++;
            }else{
                ans[k++]=nums1[i++];
                j++;
            }
        }
        return Arrays.copyOfRange(ans,0,k);
       
    }
}

Comments

Popular posts from this blog

LeetCode 35: Search Insert Position

LeetCode 217: Contains Duplicate