Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The First Working Day by tokiojapan55
import datetime
def vacation(date, days):
#replace this for solution
dt = datetime.datetime.strptime(date, '%Y-%m-%d')
dt += datetime.timedelta(days=days)
op = 2 if dt.weekday()==5 else 1 if dt.weekday()==6 else 0
return (dt + datetime.timedelta(days=op)).strftime('%Y-%m-%d')
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!")
March 24, 2020