Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The First Working Day solution in Creative category for The First Working Day by tssrkt777
import calendar
import datetime
def vacation(date, days):
y, m, d = date.split('-')
dt = datetime.date(int(y), int(m), int(d))
days = datetime.timedelta(days = days)
res = dt + days
if calendar.weekday(res.year, res.month, res.day)==5:
days = datetime.timedelta(days=2)
res += days
elif calendar.weekday(res.year, res.month, res.day)==6:
days = datetime.timedelta(days=1)
res += days
res = str(res)
return res
if __name__ == '__main__':
print("Example:")
print(vacation('2018-07-01', 14))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert vacation('2018-07-01', 14) == '2018-07-16'
assert vacation('2018-02-19', 10) == '2018-03-01'
assert vacation('2000-02-28', 5) == '2000-03-06'
assert vacation('1999-12-20', 14) == '2000-01-03'
print("Coding complete? Click 'Check' to earn cool rewards!")
Sept. 9, 2021