Sha256: bb6de211202003cb991868aac53bf1560265ea55d3552ea776dbee9e0e53cc4e

Contents?: true

Size: 720 Bytes

Versions: 174

Compression:

Stored size: 720 Bytes

Contents

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

```plain
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

174 entries across 174 versions & 1 rubygems

Version Path
trackler-2.0.0.3 common/exercises/leap/description.md
trackler-2.0.0.2 common/exercises/leap/description.md
trackler-2.0.0.1 common/exercises/leap/description.md
trackler-2.0.0.0 common/exercises/leap/description.md
trackler-1.0.4.1 common/exercises/leap/description.md
trackler-1.0.4.0 common/exercises/leap/description.md
trackler-1.0.3.0 common/exercises/leap/description.md
trackler-1.0.2.1 common/exercises/leap/description.md
trackler-1.0.2.0 common/exercises/leap/description.md
trackler-1.0.1.2 common/exercises/leap/description.md
trackler-1.0.1.1 common/exercises/leap/description.md
trackler-1.0.1.0 common/exercises/leap/description.md
trackler-1.0.0.1 common/exercises/leap/description.md
trackler-1.0.0 common/exercises/leap/description.md