Skip to content

Instantly share code, notes, and snippets.

@livmaria7891
Created August 23, 2016 20:19
Show Gist options
  • Save livmaria7891/a3e0a2ca12953c6d5cf04e39469861a2 to your computer and use it in GitHub Desktop.
Save livmaria7891/a3e0a2ca12953c6d5cf04e39469861a2 to your computer and use it in GitHub Desktop.
Weekend Warrior Leap Year
def leap_year?(year)
if (year % 4 == 0 && year % 100 != 0) || year % 400 == 0
return true
end
end
@CheezItMan
Copy link

Well done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment