You are given a list of existing events and a new event request. Each event is represented as an object (or dictionary) with two properties: start
and end
. These values represent times in minutes from midnight. Your task is to implement a function that determines if the new event can be scheduled without overlapping any of the existing events.
Requirements:
existingEvents
: a list of event objects, e.g., [{ start: 60, end: 120 }, { start: 150, end: 210 }]
.newEvent
: an event object with properties start
and end
.t
and another starting at time t
do not conflict.true
if the new event can be scheduled without any overlap, and false
if there is a conflict.Example:
Assuming:
existingEvents = [ { start: 60, end: 120 }, { start: 150, end: 210 } ]
newEvent = { start: 120, end: 150 }
The new event does not overlap with any existing event, so the function should return true
.
Task:
Write code in your preferred programming language to implement the described functionality. Ensure your solution handles unsorted input and has an efficient time complexity. Include comments to explain your logic where necessary.