Home / Code-challenges / Debug Leap Year Function
def is_leap_year(year): if year % 4 === 0: return True else: return False print(is_leap_year(2020))
Python
Debugging