Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
cheat sheet solution in Creative category for Unlucky Days by gyahun_dash
from calendar import isleap, weekday
sheet = [[2, 2, 1, 3, 1, 1, 2], [2, 1, 2, 2, 1, 1, 3]]
def checkio(year):
return sheet[isleap(year)][weekday(year, 1, 1)]
March 3, 2016
Comments: