Automatic Appointment Conflict Resolution
- by Thomas
I'm trying to figure out an algorithm for resolving appointment times.
I currently have a naive algorithm that pushes down conflicting appointments repeatedly, until there are no more appointments.
# The appointment list is always sorted on start time
appointment_list = [
<Appointment: 10:00 -> 12:00>,
<Appointment: 11:00 ->…