Skip to main content

19. Merge Intervals

mediumAsked at Asana

Collapse overlapping time ranges into a minimal non-overlapping set — exactly what Asana's timeline view does when rendering overlapping task blocks for the same assignee on a given day.

By Alex Chen, Founder, InterviewChamp.AI · Last verified

Problem

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.

Constraints

  • 1 <= intervals.length <= 10^4
  • intervals[i].length == 2
  • 0 <= starti <= endi <= 10^4

Examples

Example 1

Input
intervals = [[1,3],[2,6],[8,10],[15,18]]
Output
[[1,6],[8,10],[15,18]]

Explanation: [1,3] and [2,6] overlap — merged into [1,6].

Example 2

Input
intervals = [[1,4],[4,5]]
Output
[[1,5]]

Explanation: Intervals that touch at a boundary are considered overlapping.

Approaches

1. Brute force — check every pair

For each interval, scan all others to find overlaps and merge repeatedly until stable. Slow but simple.

Time
O(n^2)
Space
O(n)
function merge(intervals) {
  let changed = true;
  while (changed) {
    changed = false;
    const result = [];
    const used = new Array(intervals.length).fill(false);
    for (let i = 0; i < intervals.length; i++) {
      if (used[i]) continue;
      let [s, e] = intervals[i];
      for (let j = i + 1; j < intervals.length; j++) {
        if (used[j]) continue;
        const [s2, e2] = intervals[j];
        if (s2 <= e && e2 >= s) {
          s = Math.min(s, s2);
          e = Math.max(e, e2);
          used[j] = true;
          changed = true;
        }
      }
      result.push([s, e]);
    }
    intervals = result;
  }
  return intervals;
}

Tradeoff:

2. Sort then linear scan (optimal)

Sort by start time. Walk through intervals: if the current interval overlaps the last merged one, extend it; otherwise push a new interval.

Time
O(n log n)
Space
O(n)
function merge(intervals) {
  intervals.sort((a, b) => a[0] - b[0]);
  const result = [intervals[0]];

  for (let i = 1; i < intervals.length; i++) {
    const last = result[result.length - 1];
    const [start, end] = intervals[i];
    if (start <= last[1]) {
      last[1] = Math.max(last[1], end);
    } else {
      result.push([start, end]);
    }
  }

  return result;
}

Tradeoff:

Asana-specific tips

Asana interviewers love this because timeline rendering is a core product surface. Sort-then-scan is the answer they expect — walk through why sorting is the key insight (once sorted, you only need to compare each interval with the previous merged endpoint). Follow-up: 'How would you handle a stream of new intervals arriving in real time?' Mention an interval tree or sorted insertion.

Solve it now

Free. No sign-up. Python and JavaScript run instantly in your browser.

Output

Press Run or Cmd+Enter to execute

Practice these live with InterviewChamp.AI

Drill Merge Intervals and other Asana interview questions under real-loop conditions with instant feedback on your reasoning, complexity claims, and code.

Practice these live with InterviewChamp.AI →