LLD - Design — Hotel Booking System
Identify the bug in the following availability check code:
def is_available(stock, requested):
if requested > stock:
return True
else:
return False
print(is_available(5, 10))