0057 Insert Interval
Solved at: 230128 Insert Interval
Question
You are given an array of non-overlapping intervals intervals where intervals[i] = [starti, endi] represent the start and the end of the ith interval and intervals is sorted in ascending order by starti. You are also given an interval newInterval = [start, end] that represents the start and end of another interval.
Insert newInterval into intervals such that intervals is still sorted in ascending order by starti and intervals still does not have any overlapping intervals (merge overlapping intervals if necessary).
Return intervals after the insertion.
Solution
Results
- Runtime 159 ms, Beats 8.5%
- Memory 15 MB, Beats 28.83%
Complexity
Time:
Space: but in this case the problem gave the original array immutable, so
Backlinks (1)
Comments (0)