mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-12 14:40:46 -05:00
13 lines
253 B
Zig
13 lines
253 B
Zig
|
pub fn isLeapYear(year: u32) bool {
|
||
|
if (year % 4 == 0) {
|
||
|
if (year % 100 == 0) {
|
||
|
if (year % 400 == 0) {
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|