Sha256: 4110c3a9fd6615f19af8445385c6bf331adcc7d2a7edf75f3eec62eadea7eddc

Contents?: true

Size: 763 Bytes

Versions: 140

Compression:

Stored size: 763 Bytes

Contents

Given a year, report if it is a leap year.

The tricky thing here is that a leap year in the Gregorian calendar occurs:

```text
on every year that is evenly divisible by 4
  except every year that is evenly divisible by 100
    unless the year is also evenly divisible by 400
```

For example, 1997 is not a leap year, but 1996 is.  1900 is not a leap
year, but 2000 is.

If your language provides a method in the standard library that does
this look-up, pretend it doesn't exist and implement it yourself.

## Notes

Though our exercise adopts some very simple rules, there is more to
learn!

For a delightful, four minute explanation of the whole leap year
phenomenon, go watch [this youtube video][video].

[video]: http://www.youtube.com/watch?v=xX96xng7sAE

Version data entries

140 entries across 139 versions & 1 rubygems

Version Path
trackler-2.2.1.180 problem-specifications/exercises/leap/description.md
trackler-2.2.1.179 problem-specifications/exercises/leap/description.md
trackler-2.2.1.178 problem-specifications/exercises/leap/description.md
trackler-2.2.1.177 problem-specifications/exercises/leap/description.md
trackler-2.2.1.176 problem-specifications/exercises/leap/description.md
trackler-2.2.1.175 problem-specifications/exercises/leap/description.md
trackler-2.2.1.174 problem-specifications/exercises/leap/description.md
trackler-2.2.1.173 problem-specifications/exercises/leap/description.md
trackler-2.2.1.172 problem-specifications/exercises/leap/description.md
trackler-2.2.1.171 problem-specifications/exercises/leap/description.md
trackler-2.2.1.170 problem-specifications/exercises/leap/description.md
trackler-2.2.1.169 problem-specifications/exercises/leap/description.md
trackler-2.2.1.167 problem-specifications/exercises/leap/description.md
trackler-2.2.1.166 problem-specifications/exercises/leap/description.md
trackler-2.2.1.165 problem-specifications/exercises/leap/description.md
trackler-2.2.1.164 problem-specifications/exercises/leap/description.md
trackler-2.2.1.163 problem-specifications/exercises/leap/description.md
trackler-2.2.1.162 problem-specifications/exercises/leap/description.md
trackler-2.2.1.161 problem-specifications/exercises/leap/description.md
trackler-2.2.1.160 problem-specifications/exercises/leap/description.md