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.159 problem-specifications/exercises/leap/description.md
trackler-2.2.1.158 problem-specifications/exercises/leap/description.md
trackler-2.2.1.157 problem-specifications/exercises/leap/description.md
trackler-2.2.1.156 problem-specifications/exercises/leap/description.md
trackler-2.2.1.155 problem-specifications/exercises/leap/description.md
trackler-2.2.1.154 problem-specifications/exercises/leap/description.md
trackler-2.2.1.153 problem-specifications/exercises/leap/description.md
trackler-2.2.1.152 problem-specifications/exercises/leap/description.md
trackler-2.2.1.151 problem-specifications/exercises/leap/description.md
trackler-2.2.1.150 problem-specifications/exercises/leap/description.md
trackler-2.2.1.149 problem-specifications/exercises/leap/description.md
trackler-2.2.1.148 problem-specifications/exercises/leap/description.md
trackler-2.2.1.147 problem-specifications/exercises/leap/description.md
trackler-2.2.1.146 problem-specifications/exercises/leap/description.md
trackler-2.2.1.145 problem-specifications/exercises/leap/description.md
trackler-2.2.1.144 problem-specifications/exercises/leap/description.md
trackler-2.2.1.143 problem-specifications/exercises/leap/description.md
trackler-2.2.1.143 tracks/powershell/exercises/leap/README.md
trackler-2.2.1.142 problem-specifications/exercises/leap/description.md
trackler-2.2.1.141 problem-specifications/exercises/leap/description.md