2248. Intersection of Multiple Arrays
Easy
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:
Example 2:
Constraints:
1 <= nums.length <= 1000
1 <= sum(nums[i].length) <= 1000
1 <= nums[i][j] <= 1000
All the values of
nums[i]
are unique.
解題
Runtime: 8 ms, faster than 90.12%
Memory Usage: 3.8 MB, less than 95.06%
Last updated