Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
SIMPLE solution in Clear category for Leap Year Checking by U.V
def is_leap_year(year: int) -> bool:
if year%4:return False
if year%100:return True
return year%400==0
Jan. 1, 2024