We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
# Day of the Programmer 📅fromdatetimeimport*defday_of_programmer(year):# Transition yearifyear==1918:return"26.09.1918"# Julian calendarifyear<1918:return("12.09."+str(year)ifyear%4==0else"13.09."+str(year))# Gregorian calendard=date(year,1,1)+timedelta(days=255)returnd.strftime("%d.%m.%Y")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day of the Programmer
You are viewing a single comment's thread. Return to all comments →