Skip to content

Instantly share code, notes, and snippets.

@pdk
Created April 18, 2019 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdk/b2fb3cecf1b1b484b272539740011156 to your computer and use it in GitHub Desktop.
Save pdk/b2fb3cecf1b1b484b272539740011156 to your computer and use it in GitHub Desktop.
compute number of days in a month
func daysInMonth(y, m int) int {
dayZero := 0
return time.Date(y, time.Month(m+1), dayZero, 0, 0, 0, 0, time.UTC).Day()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment