首页 > 其他 > 详细

LeetCode 56 _ Merge Intervals 合并间隔

时间:2019-04-03 13:58:01      阅读:149      评论:0      收藏:0      [点我收藏+]

Description:

Given a collection of intervals, merge all overlapping intervals.

Example 1:

Input: [[1,3],[2,6],[8,10],[15,18]]
Output: [[1,6],[8,10],[15,18]]
Explanation: Since intervals [1,3] and [2,6] overlaps, merge them into [1,6].

Example 2:

Input: [[1,4],[4,5]]
Output: [[1,5]]
Explanation: Intervals [1,4] and [4,5] are considered overlapping.

 

LeetCode 56 _ Merge Intervals 合并间隔

原文:https://www.cnblogs.com/zingg7/p/10648186.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!