Leetcode 1213. Intersection of Three Sorted Arrays
Posted on Fri 22 November 2024 in Leetcode Premium • Tagged with pointers
Question Link : https://leetcode.com/problems/intersection-of-three-sorted-arrays/
Difficulty: Easy
Premium: True
Question
Given three integer arrays arr1, arr2 and arr3 sorted in strictly increasing order, return a sorted array of only the integers that appeared in all three arrays. Example 1:
Input: arr1 = [1,2,3,4,5], arr2 = [1 …
Continue reading