LLD - Design — Hotel Booking System
Given the following code, what will be the output?
booked_slots = {"9AM": True, "10AM": False}
requested_slot = "10AM"
if not booked_slots.get(requested_slot, False):
print("Slot Available")
else:
print("Slot Booked")