Question: Please use the java language for this problem. Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the

Please use the java language for this problem.
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 =[5,2,2,5], nums 2=[2,2] Output 1:[2,2] Example 2 : Input: nums3 =[4,9,5], nums4 =[9,4,9,8,4] Output2: [4,9] Explanation: [9,4] is also accepted. Constraints: 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
