-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmergeIntervals.py
50 lines (48 loc) · 1.62 KB
/
mergeIntervals.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
class Solution(object):
def merge(self, intervals):
res = []
for i in sorted(intervals, key=lambda i: i[0]):
# compare tail of range res with start of range i
if res and i[0] <= res[-1][-1]:
# update the tail of range res
# choose the max one
res[-1][-1] = max(res[-1][-1], i[-1])
# else has two meanings
# one is that res is empty
# the other is that i[0] > res[-1][-1]
# in these two cases,just add i to the tail of res
else:
res.append(i)
return res
# wrong
# def merge(self, intervals):
# """
# :type intervals: List[List[int]]
# :rtype: List[List[int]]
# """
# res = []
# intervals = sorted(intervals, key=lambda i: i[0])
# if not intervals:
# return []
# if len(intervals) == 1:
# return intervals
# first = intervals[0]
#
# for i in range(1, len(intervals)):
# if intervals[i][0] <= first[-1]:
# if first[-1] >= intervals[i][-1]:
# res.append(first)
# else:
# res.append([first[0],intervals[i][-1]])
# first = res[-1]
# else:
# if first not in res:
# res.append(first)
# res.append(intervals[i])
# else:
# res.append(intervals[i])
# first = res[-1]
# return res
# test
nums = [[1,3],[2,6],[8,10],[15,18]]
print(Solution().merge(nums))