Interval List Intersections
Try to solve the Interval List Intersections problem.
We'll cover the following
Statement
For two lists of closed intervals given as input, interval_list_a
and interval_list_b
, where each interval has its own start and end time, write a function that returns the intersection of the two interval lists.
For example, the intersection of and is .
Constraints:
-
interval_list_a.length
,interval_list_b.length
-
start[i]
end[i]
, where is used to indicateinterval_list_a
-
end[i]
start[i + 1]
-
start[j]
end[j]
, where is used to indicateinterval_list_b
-
end[j]
start[j + 1]
Examples
Create a free account to view this lesson.
By signing up, you agree to Educative's Terms of Service and Privacy Policy