Intersection of Multiple Arrays

Given a 2D integer array nums where nums[i] is a non-empty array of distinct positive integers, return the list of integers that are present in each array of nums sorted in ascending order.

Example 1
Inputnums = [[3,1,2,4,5],[1,2,3,4],[3,4,5,6]]
Output[3,4]
The only integers present in each of nums[0], nums[1], and nums[2] are 3 and 4, so we return [3, 4].
Example 2
Inputnums = [[1,2,3],[4,5,6]]
Output[]
There does not exist any integer present both in nums[0] and nums[1], so we return an empty list [].

Constraints

  • 1 <= nums.length <= 1000
  • 1 <= sum(nums[i].length) <= 1000
  • 1 <= nums[i][j] <= 1000
  • All the values of nums[i] are unique.

Asked at 2 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate