Skip to content

Instantly share code, notes, and snippets.

@yerassylad
Created November 7, 2018 15:56
Show Gist options
  • Save yerassylad/3ef8382d2fa46abf2163e807a548e555 to your computer and use it in GitHub Desktop.
Save yerassylad/3ef8382d2fa46abf2163e807a548e555 to your computer and use it in GitHub Desktop.
def isLeap(year)
if year % 4 == 0
return true if year % 400 == 0
return false if year % 100 == 0
return true
end
false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment