Skip to content

Instantly share code, notes, and snippets.

@AdhirRamjiawan
Created August 31, 2017 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdhirRamjiawan/e3e9b9a671697a513f7304aad27c4c33 to your computer and use it in GitHub Desktop.
Save AdhirRamjiawan/e3e9b9a671697a513f7304aad27c4c33 to your computer and use it in GitHub Desktop.
pub fn is_leap_year(year: i32) -> bool {
(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