[LeetCode] Problem 56 - Merge Intervals
Given a collection of intervals, merge all overlapping intervals.
ExampleNo.1Input: [[1,3],[2,6],[8,10],[15,18]]
Output: [[1,6],[8,10],[15,18]]
Explan
...