Skip to content

Instantly share code, notes, and snippets.

@tgittos
Created March 2, 2011 19:49
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 tgittos/851595 to your computer and use it in GitHub Desktop.
Save tgittos/851595 to your computer and use it in GitHub Desktop.
Determine if a given year is a leap year
def is_leap_year?
(year % 4 == 0) and ((year % 100 > 0) or (year % 100 == 0) and (year % 400 == 0))
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment