LLD - Design — Hotel Booking System
Find the bug in this refund calculation snippet:
if cancellation_time < allowed_time:
refund = amount * 0.8
elif cancellation_time == allowed_time:
refund = amount * 0.5
else:
refund = 0
