Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Count weekdays solution in Clear category for Unlucky Days by kkkkk
from datetime import date
def checkio(year: int) -> int:
return [date(year, month, 13).weekday() for month in range(1, 13)].count(4)
Aug. 29, 2019
Comments: