Leetcode 0056. Merge Intervals
Posted on Sun 13 November 2022 in Leetcode • Tagged with interval-merge
Question Link : https://leetcode.com/problems/merge-intervals/
Difficulty: Medium
Question
Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals, and return an array of the non-overlapping intervals that cover all the intervals in the input. Example 1:
Input: intervals = [[1,3],[2,6],[8,10 …
Continue reading