Skip to content

Instantly share code, notes, and snippets.

@eternal44
Created August 18, 2015 01:49
Show Gist options
  • Save eternal44/ff0bd3991d2024a52fb4 to your computer and use it in GitHub Desktop.
Save eternal44/ff0bd3991d2024a52fb4 to your computer and use it in GitHub Desktop.
3e_method_leap_year.rb - first draft
def leap_year?(year)
if year % 400 == 0
true
# yield calc minutes
elsif year.to_s[-2..-1] != "00" && year % 4 == 0
true
# yield calc minutes
else
false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment