Created
August 31, 2017 05:55
-
-
Save AdhirRamjiawan/e3e9b9a671697a513f7304aad27c4c33 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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