Skip to content

Instantly share code, notes, and snippets.

@kasajian
Created May 20, 2014 03:11
Show Gist options
  • Save kasajian/48540f4d9322ef302824 to your computer and use it in GitHub Desktop.
Save kasajian/48540f4d9322ef302824 to your computer and use it in GitHub Desktop.
Leap year logic
year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment