Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Arrays or Linked Lists Algorithm
00:00
5 left

Arrays or Linked Lists Algorithm

EasyPython

Problem

Shopee's checkout interface receives delivery windows from multiple logistics providers. Given a list of time intervals, merge every overlapping or directly adjacent window so the UI can display a compact schedule.

Formal Specification

Implement merge_delivery_windows(intervals). The input is a list of integer pairs [start, end], where start <= end. Return a new list of non-overlapping intervals sorted by start time. Two intervals should be merged when the next interval starts at or before the current interval's end. Do not modify the input list.

Constraints

  • 0 <= intervals.length <= 10^5
  • Each interval contains exactly two integers
  • -10^9 <= start <= end <= 10^9
  • The input list must not be modified
  • The output must be sorted and non-overlapping

Function Signature

def merge_delivery_windows(intervals):
Interviewer

Your question is Arrays or Linked Lists Algorithm. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.