Skip to content

Instantly share code, notes, and snippets.

@sentientmonkey
Last active August 8, 2016 19:13
Show Gist options
  • Save sentientmonkey/974b77a38f1714c1846922ae53703999 to your computer and use it in GitHub Desktop.
Save sentientmonkey/974b77a38f1714c1846922ae53703999 to your computer and use it in GitHub Desktop.
pub fn is_leap_year(year: u64) -> bool {
match (year % 4, year % 100, year % 400) {
(0, 0, 0) => true,
(0, 0, _) => false,
(0, _, _) => true,
(_, _, _) => false,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment