Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Leap Year Checking by Magu
from calendar import isleap
def is_leap_year(year: int) -> bool:
return isleap(year)
Oct. 21, 2023