Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Unlucky Days solution in Clear category for Unlucky Days by tssrkt777
def checkio(year: int) -> int:
import calendar
res = 0
for x in range(1, 13):
if calendar.weekday(year, x, 13)==4:
res+=1
return res
if __name__ == '__main__':
print("Example:")
print(checkio(2015))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert checkio(2015) == 3, "First - 2015"
assert checkio(1986) == 1, "Second - 1986"
print("Coding complete? Click 'Check' to earn cool rewards!")
Sept. 9, 2021
Comments: