leetle

Daily challenge for 2025-06-14

165. Meeting Rooms

Write a function solve that determines if a person can attend all meetings given their time intervals. Each interval is [start_time, end_time].

Example:
Input: [[0, 30], [5, 10], [15, 20]]
Output: False (meetings overlap)

Run this challenge interactively in Python or JavaScript when the app loads.