Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).
You may assume that the intervals were initially sorted according to their start times.
Example 1:
Given intervals [1,3],[6,9]
, insert and merge [2,5]
in as [1,5],[6,9]
.
Example 2:
Given [1,2],[3,5],[6,7],[8,10],[12,16]
, insert and merge [4,9]
in as [1,2],[3,10],[12,16]
.
This is because the new interval [4,9]
overlaps with [3,5],[6,7],[8,10]
.
# Definition for an interval.
# class Interval(object):
# def __init__(self, s=0, e=0):
# self.start = s
# self.end = e
class Solution(object):
def insert(self, intervals, newInterval):
l = intervals
l += newInterval,
li = sorted(l,key = lambda i:i.start)
#print li
res = []
for i in li:
if res and i.start <= res[-1].end :
res[-1].end = max(i.end,res[-1].end)
else:
res += i,
return res
'''
l = []
for i in intervals:
l += [i.start,i.end],
l += [newInterval.start,newInterval.end],
l.sort()
res = []
i = 0
while i < (len(l)):
s = l[i][0]
e = l[i][1]
while i < len(l)-1 and l[i+1][0] <= e:
e = max(l[i+1][1],e)
i += 1
res += Interval(s,e),
i += 1
return res
'''
"""
:type intervals: List[Interval]
:type newInterval: Interval
:rtype: List[Interval]
"""