Problem
Ask
Submissions

Problem: Employee Free Time

Medium
30 min
Explore how to determine common free time intervals among multiple employees by analyzing and merging their sorted, non-overlapping schedules. This lesson helps you apply interval merging techniques to solve scheduling problems effectively.

Statement

You’re given a list containing the schedules of multiple employees. Each person’s schedule is a list of non-overlapping intervals in sorted order. An interval is specified with the start and end time, both being positive integers. Your task is to find the list of finite intervals representing the free time for all the employees.

Note: The common free intervals are calculated between the earliest start time and the latest end time of all meetings across all employees.

Constraints:

  • 11 \leq schedule.length , schedule[i].length 50\leq 50

  • 00 \leq interval.start < interval.end 108\leq 10^8, where interval is any interval in the list of schedules.

Problem
Ask
Submissions

Problem: Employee Free Time

Medium
30 min
Explore how to determine common free time intervals among multiple employees by analyzing and merging their sorted, non-overlapping schedules. This lesson helps you apply interval merging techniques to solve scheduling problems effectively.

Statement

You’re given a list containing the schedules of multiple employees. Each person’s schedule is a list of non-overlapping intervals in sorted order. An interval is specified with the start and end time, both being positive integers. Your task is to find the list of finite intervals representing the free time for all the employees.

Note: The common free intervals are calculated between the earliest start time and the latest end time of all meetings across all employees.

Constraints:

  • 11 \leq schedule.length , schedule[i].length 50\leq 50

  • 00 \leq interval.start < interval.end 108\leq 10^8, where interval is any interval in the list of schedules.