exercism-solutions/rust/leap/src/lib.rs

4 lines
101 B
Rust
Raw Normal View History

2024-03-25 15:29:12 -05:00
pub fn is_leap_year(year: u64) -> bool {
year % 400 == 0 || (year % 100 != 0 && year % 4 == 0)
}