Interval Union
Given a two-dimensional integer list intervals representing unsorted inclusive intervals, return their union in sorted order.
Constraints
n ≤ 100,000wherenis the length ofintervals
https://binarysearch.com/problems/Interval-Union
Examples
Example 1
Input
- intervals =
 
[[0,5],
 [4,6]]
Output
- answer = 
[[0, 6]] 
Example 2
Input
- intervals =
 
[[5,6],
 [1,2]]
Output
- answer = 
[[1, 2], [5, 6]] 
Example 3
Input
- intervals =
 
[[1,2],
 [3,4]]
Output
- answer = 
[[1, 2], [3, 4]] 
      
      
Leave a comment