1229. Meeting Scheduler - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

Description:
You are given two lists (arrays) of time slots, where each time slot is represented as a pair of integers [start, end]. These time slots indicate when a person is available. You are also given an integer duration representing the length of the meeting you want to schedule.

Your task is to find the earliest time slot that works for both people, meaning the overlapping time between their availabilities must be at least duration long. If such a slot exists, return it as a pair [start, start + duration]; otherwise, return an empty list.

Example 1:

  • Input:
    • slots1 = [[10, 50], [60, 120], [140, 210]]
    • slots2 = [[0, 15], [60, 70]]
    • duration = 8
  • Output: [60, 68]
  • Explanation:
    The first overlapping slot between the two schedules is between 60 and 70. Since the meeting duration is 8, the earliest valid meeting slot is from 60 to 68.

Example 2:

  • Input:
    • slots1 = [[10, 50], [60, 120], [140, 210]]
    • slots2 = [[0, 15], [60, 70]]
    • duration = 12
  • Output: []
  • Explanation:
    Although there is an overlap between 60 and 70, its length (10) is less than the required 12, so no valid meeting slot exists.

Constraints:

  • The time slots within each list are disjoint and may not be sorted.
  • All time slots are in the format [start, end] with start < end.
  • The meeting duration is a positive integer.

Hints

  • Hint 1:
    The meeting can only happen in an interval where the two schedules overlap. Think about how to compute the intersection of two time intervals.

  • Hint 2:
    Sorting the time slots based on their start times can make it easier to traverse both schedules simultaneously.

  • Hint 3:
    Use a two-pointer approach to traverse both lists and check for overlaps. For each pair of slots from the two lists, determine the intersection and check if its length is at least duration.

Approach: Two-Pointer Technique After Sorting

Step-by-Step Process

  1. Sort Both Lists:
    Although the lists may not be initially sorted, sort both slots1 and slots2 by their start times. This allows you to traverse the schedules in order.

  2. Initialize Two Pointers:
    Use one pointer for each list (let’s call them i for slots1 and j for slots2).

  3. Find Overlap for Each Pair:
    For the current time slots slot1 = [start1, end1] and slot2 = [start2, end2], compute the intersection:

    • The start of the overlap is max(start1, start2).
    • The end of the overlap is min(end1, end2).

    If min(end1, end2) - max(start1, start2) >= duration, then a valid meeting slot exists. The earliest meeting time will be [max(start1, start2), max(start1, start2) + duration].

  4. Advance the Pointer:
    If there is no valid meeting slot for the current pair, advance the pointer of the interval that ends first (i.e. the one with the smaller end time) because it cannot possibly form an overlapping meeting with any later interval from the other list.

  5. Return the Result:
    If you find a valid overlapping interval, return it immediately. If you finish scanning both lists without finding one, return an empty list.

Why This Works

  • Sorting ensures that you always compare the earliest available time slots first.

  • Using the two-pointer technique allows you to efficiently check overlapping intervals between the two schedules.

  • By advancing the pointer with the earlier end time, you ensure that you are always looking for the next potential overlapping interval.

Code Implementation

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:

    • Sorting both lists takes O(m log m + n log n), where m and n are the lengths of slots1 and slots2, respectively.

    • The two-pointer traversal runs in O(m + n).

    • Overall: O(m log m + n log n) due to the sorting step.

  • Space Complexity:

    • Sorting in place requires O(1) extra space (ignoring the space needed for the output).
    • Overall: O(1).

Step-by-Step Walkthrough

Consider the first example:

  • Input:
    slots1 = [[10,50], [60,120], [140,210]]
    slots2 = [[0,15], [60,70]]
    duration = 8
  1. After Sorting:

    • slots1 remains: [[10,50], [60,120], [140,210]]
    • slots2 remains: [[0,15], [60,70]]
  2. Initialization:

    • Set pointer i = 0 (for slots1) and j = 0 (for slots2).
  3. First Iteration:

    • Compare slots1[0] = [10,50] with slots2[0] = [0,15].
    • Overlap is from max(10,0)=10 to min(50,15)=15 → overlap length = 15 - 10 = 5.
    • Since 5 < 8, no valid meeting slot.
    • Since slots2[0] ends at 15 which is earlier than 50, increment pointer j to 1.
  4. Second Iteration:

    • Compare slots1[0] = [10,50] with slots2[1] = [60,70].
    • Overlap is from max(10,60)=60 to min(50,70)=50.
    • Here, there is no overlap (since 60 > 50).
    • Now, since slots1[0] ends at 50 which is earlier than 70, increment pointer i to 1.
  5. Third Iteration:

    • Compare slots1[1] = [60,120] with slots2[1] = [60,70].
    • Overlap is from max(60,60)=60 to min(120,70)=70 → overlap length = 70 - 60 = 10.
    • Since 10 ≥ 8, a valid meeting slot is found.
    • The earliest meeting time is [60, 60 + 8] = [60, 68].
  6. Return the Result:

    • The function returns [60, 68].

Common Mistakes and Edge Cases

  • Not Sorting the Input:
    Without sorting, the two-pointer approach will fail because it assumes the time slots are processed in chronological order.

  • Wrong Overlap Calculation:
    Carefully compute the overlap as max(start1, start2) and min(end1, end2).

  • No Valid Meeting Slot:
    Make sure to return an empty result if no overlapping interval meets the duration requirement.

  • Edge Case - No Availability:
    If either schedule is empty, return an empty list since no meeting can be scheduled.

  • Meeting Room Scheduling:
    Similar problems involve merging intervals or scheduling meetings based on multiple calendars.

  • Interval Intersection Problems:
    Practice with problems that require computing intersections of intervals or merging overlapping intervals.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
What is the salary of CrowdStrike specialist?
Developing a personal checklist before each mock interview
What is GitLab known for?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;