Sha256: ef9fa2f0c0f97250a46101620e6e8d991f5eef16fb7dc73b4ca260a28dbf364d

Contents?: true

Size: 764 Bytes

Versions: 83

Compression:

Stored size: 764 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:

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

83 entries across 83 versions & 1 rubygems

Version Path
trackler-2.2.1.39 problem-specifications/exercises/leap/description.md
trackler-2.2.1.38 problem-specifications/exercises/leap/description.md
trackler-2.2.1.37 problem-specifications/exercises/leap/description.md
trackler-2.2.1.36 problem-specifications/exercises/leap/description.md
trackler-2.2.1.35 problem-specifications/exercises/leap/description.md
trackler-2.2.1.34 problem-specifications/exercises/leap/description.md
trackler-2.2.1.33 problem-specifications/exercises/leap/description.md
trackler-2.2.1.32 problem-specifications/exercises/leap/description.md
trackler-2.2.1.31 problem-specifications/exercises/leap/description.md
trackler-2.2.1.30 problem-specifications/exercises/leap/description.md
trackler-2.2.1.29 problem-specifications/exercises/leap/description.md
trackler-2.2.1.28 problem-specifications/exercises/leap/description.md
trackler-2.2.1.27 problem-specifications/exercises/leap/description.md
trackler-2.2.1.26 problem-specifications/exercises/leap/description.md
trackler-2.2.1.25 problem-specifications/exercises/leap/description.md
trackler-2.2.1.24 problem-specifications/exercises/leap/description.md
trackler-2.2.1.23 problem-specifications/exercises/leap/description.md
trackler-2.2.1.22 problem-specifications/exercises/leap/description.md
trackler-2.2.1.21 problem-specifications/exercises/leap/description.md
trackler-2.2.1.20 problem-specifications/exercises/leap/description.md