
Asked in Practo
Given three arrays sorted in non-decreasing order, print all common elements in these arrays. Examples: ar1[] = {1, 5, 10, 20, 40, 80} ar2[] = {6, 7, 20, 80, 100} ar3[] = {3, 4, 15, 20, 30, 70, 80, 120} Output: 20, 80

AnswerBot
2y
Given three sorted arrays, find common elements.
Iterate through all arrays simultaneously using three pointers.
If all pointers point to the same element, add it to the result and increment all pointer...read more
Help your peers!
Add answer anonymously...
Interview Questions from Popular Companies

3.7
• 8.7k Interviews

4.0
• 5.4k Interviews

3.5
• 4.1k Interviews

3.6
• 7.9k Interviews

3.7
• 5.9k Interviews

3.7
• 6.1k Interviews

3.5
• 4.1k Interviews

3.7
• 5.1k Interviews
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

