LLD - Design — Hotel Booking System
This booking system code sometimes allows double booking:
What is the likely cause?
def book(slot):
if check_availability(slot):
confirm_booking(slot)
update_availability(slot, False)What is the likely cause?
