Given a date, return the date of the next weekday (Mon-Fri) after it.
Constraints
Example
>>> next_weekday('2024-03-08')
'2024-03-11'
>>> next_weekday('2024-03-04')
'2024-03-05'
>>> next_weekday('2024-03-09')
'2024-03-11'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints