Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 1.67 KB

057_Insert_Interval.md

File metadata and controls

63 lines (45 loc) · 1.67 KB

57. Insert Interval


Description

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].

Python

# 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):
        """
        :type intervals: List[Interval]
        :type newInterval: Interval
        :rtype: List[Interval]
        """
        if len(intervals) == 0:
            return [newInterval]
        
        result = []
        l = len(intervals)
        for i in range(len(intervals)):
            if intervals[i].start > newInterval.start:
                intervals.insert(i, newInterval)
                break
            
        if l == len(intervals):
            intervals.append(newInterval)
            
        start, end = intervals[0].start, intervals[0].end
        for i in range(1, len(intervals)):
            if intervals[i].start > end:
                result.append(Interval(start, end))
                start = intervals[i].start
                end = intervals[i].end
            elif end <= intervals[i].end:
                end = intervals[i].end
                
        result.append(Interval(start, end))
        
        return result