LLD - Design — Food Delivery System
Given the following pseudocode for notifying parties asynchronously, what is the expected output if notify prints "Notified {user}"?
users = ["Ann", "Ben"]
for user in users:
async_notify(user)
print("All notifications sent")