Skip to content

Instantly share code, notes, and snippets.

@stomatocode
Created March 25, 2013 21:48
Show Gist options
  • Save stomatocode/5241119 to your computer and use it in GitHub Desktop.
Save stomatocode/5241119 to your computer and use it in GitHub Desktop.
def leap_year?(year)
if (year % 4 == 0)
return true
elsif (!(year % 400 == 0) and (year % 100 == 0 and year % 4 == 0))
return false
elsif ((year % 100 == 0 and year % 400 == 0) and !(year % 4 == 0))
return true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment