Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 20, 2020 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/dd3764382e0a9feaf82a2ce7eff99026 to your computer and use it in GitHub Desktop.
Save parzibyte/dd3764382e0a9feaf82a2ce7eff99026 to your computer and use it in GitHub Desktop.
def es_bisiesto(anio: int) -> bool:
return anio % 4 == 0 and (anio % 100 != 0 or anio % 400 == 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment