3 lines
88 B
Go
3 lines
88 B
Go
func isLeap(year int) bool {
|
|
return year%400 == 0 || year%4 == 0 && year%100 != 0
|
|
}
|