A leap year (in the Gregorian calendar) occurs:
Some examples:
For a delightful, four-minute explanation of the whole phenomenon of leap years, check out this YouTube video.
Your task is to determine whether a given year is a leap year.
You will see a cases_test.go
file in this exercise. This holds the test
cases used in the leap_test.go
. You can mostly ignore this file.
However, if you are interested... we sometimes generate the test data from a
cross language repository. In that repo
exercises may have a .json file that
contains common test data. Some of our local exercises have an
intermediary program that takes the problem specification
JSON and turns in into Go structs that are fed into the <exercise>_test.go
file. The Go specific transformation of that data lives in the cases_test.go
file.
Sign up to Exercism to learn and master Go with 34 concepts, 141 exercises, and real human mentoring, all for free.
Deep dive into the different algorithms and approaches you can use to solve Leap, as Jeremy and Erik explore interesting Community Solutions across 10 different languages on Exercism.