Intersection Of Two Arrays
You are given two arrays 'A' and 'B' of size 'N' and 'M' respectively. Both these arrays are sorted in non-decreasing order. You have to find the intersection of these two arrays.
Intersection of two arrays is an array that consists of all the common elements occurring in both arrays.
Note :
1. The length of each array is greater than zero.
2. Both the arrays are sorted in non-decreasing order.
3. The output should be in the order of elements that occur in the original arrays.
4. If there is no intersection present then return an empty array.
Input Format :
The first line of the input contains an integer 'T', denoting the number of test cases.
The first line of each test case contains two integers 'N' 'M', denoting the size of the two arrays.
The second line of each test case contains 'N' space-separated integers denoting the elements of the first array.
The third line of each test case contains 'M' space-separated integers denoting the elements of the second array.
Output Format :
The only line of output of each test case contains 'K' space-separated integers which correspond to the intersection of the two arrays A and B.
The output of each test case will be printed on a separate line.
Note :
You do not need to print anything, it has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 100
1 <= N, M <= 10^4
0 <= A[i] <= 10^5
0 <= B[i] <= 10^5
Time Limit: 1 sec
Follow Up:
Can we solve this problem using the time complexity of O(max(N, M)).
AnswerBot
1y
The problem is to find the intersection of two sorted arrays.
Use two pointers to iterate through the arrays.
Compare the elements at the current pointers and move the pointers accordingly.
If the elemen...read more
CodingNinjas
author
2y
I used an unordered map to store the unique elements from both the arrays and then printed it.
CodingNinjas
author
2y
Hashing
- The simplest approach to solve this problem is to use a map to find common elements.
- Firstly we can hash all the elements from the first array into a map.
- Now we iterate through the second array ...read more
CodingNinjas
author
2y
Two Pointer Approach
- We can use two pointers to solve this problem. The main idea to use two pointers is that the arrays are sorted.
- Let i be the pointer which points at the first array and i = 0.
- Let j ...read more
Add answer anonymously...
Top F5 Networks Software Developer interview questions & answers
Popular interview questions of Software Developer
Top HR questions asked in F5 Networks Software Developer
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app