Given the current HH:MM and a list of daily HH:MM jobs, print the next run.
Line 1 is the **current** time `HH:MM`. Each following line is a daily scheduled time `HH:MM`.
Print the next scheduled time strictly **after** the current time. If none today, wrap to the earliest scheduled time of the next day.
Test input:
10:30
08:00
12:00
18:00
Expected output: 12:00
Sign in to save your code and track progress across devices.