[leetcode sort]56. Merge Intervals
生活随笔
收集整理的這篇文章主要介紹了
[leetcode sort]56. Merge Intervals
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
Given a collection of intervals, merge all overlapping intervals.
For example,
Given?[1,3],[2,6],[8,10],[15,18],
return?[1,6],[8,10],[15,18].
合并重疊區間
1 class Solution(object): 2 def merge(self, intervals): 3 """ 4 :type intervals: List[Interval] 5 :rtype: List[Interval] 6 """ 7 res = [] 8 for v in sorted(intervals,key=lambda x:x.start): 9 if res and v.start <= res[-1].end: 10 res[-1].end = max(res[-1].end,v.end) 11 else: 12 res.append(v) #or res += i, 13 return res?
轉載于:https://www.cnblogs.com/fcyworld/p/6509471.html
總結
以上是生活随笔為你收集整理的[leetcode sort]56. Merge Intervals的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: HP Unix vsftp服务配置
- 下一篇: MySql某一列累计查询