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.
def dayOfProgrammer(year):
# Write your code here
if year < 1918:
if year % 4 == 0:
result = ("12.09." + str(year))
else:
result = ("13.09." + str(year))
elif year == 1918:
result = ("26.09.1918")
else:
if year % 400 == 0 or (year % 100 != 0 and year % 4 == 0):
result = ("12.09." + str(year))
else:
result = ("13.09." + str(year))
return result
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 →
Day of the programmer Solution [PYTHON] :