LLD - Design — Hotel Booking System
Given this pseudocode for refund calculation:
What will be printed if cancellation_time is after allowed_cancellation_time?
if cancellation_time <= allowed_cancellation_time:
refund_amount = full_price
else:
refund_amount = 0
print(refund_amount)What will be printed if cancellation_time is after allowed_cancellation_time?
