mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-06 03:15:01 -06:00
10 lines
183 B
PowerShell
10 lines
183 B
PowerShell
function Test-LeapYear {
|
|
param( [int]$year )
|
|
|
|
if ((($year % 4 -eq 0) -and !($year % 100 -eq 0)) -or ($year % 400 -eq 0)) {
|
|
return $true
|
|
}
|
|
|
|
return $false
|
|
}
|