Insert Interval
Try to solve the Insert Interval problem.
We'll cover the following
Statement
Given a sorted list of nonoverlapping intervals and a new interval, your task is to insert the new interval into the correct position while ensuring that the resulting list of intervals remains sorted and nonoverlapping. Each interval is a pair of nonnegative numbers, the first being the start time and the second being the end time of the interval.
Constraints:
-
existing_intervals.length
-
existing_intervals[i].length
,new_interval.length
== 2 -
start time end time
-
The list of intervals is sorted in ascending order based on the .
Create a free account to view this lesson.
By signing up, you agree to Educative's Terms of Service and Privacy Policy