Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yuanyu90221/leapyeargo


https://github.com/yuanyu90221/leapyeargo

Last synced: 16 days 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)))
}
```