An open API service indexing awesome lists of open source software.

https://github.com/yuanyu90221/leapyeargo


https://github.com/yuanyu90221/leapyeargo

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

        

# LeapYearGo

```golang
func isLeapYear(year int) bool {
return ((year%400 == 0) || ((year%100 != 0) && (year%4 == 0)))
}
```