Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear solution solution in Clear category for The Most Frequent Weekdays by ludek.reif
import datetime
def most_frequent_days(year):
fd, ld = datetime.datetime(year, 1, 1), datetime.datetime(year, 12, 31)
return [x[1] for x in sorted({(fd.weekday(), fd.strftime('%A')), (ld.weekday(), ld.strftime('%A'))})]
March 23, 2016