Lintcode:合併區間

問題: 給出若干閉合區間,合併全部重疊的部分。python 樣例: 樣例1:app 輸入: [(1,3)] 輸出: [(1,3)] 樣例 2:this 輸入: [(1,3),(2,6),(8,10),(15,18)] 輸出: [(1,6),(8,10),(15,18)] python:code """ Definition of Interval. class Interval(object):
相關文章
相關標籤/搜索