From da45b701d408101d701c6ab59e8ea9f3704d903e Mon Sep 17 00:00:00 2001 From: kyriri <31296669+kyriri@users.noreply.github.com> Date: Wed, 13 May 2020 20:17:22 -0300 Subject: [PATCH] Further clarify guidelines Everybody in the Southern hemisphere experiences winter in July and that's normal, so the original remark added an unnecessary (and off-topic) layer of confusion. --- leapYears/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leapYears/README.md b/leapYears/README.md index 0dd57dc..6233ab8 100644 --- a/leapYears/README.md +++ b/leapYears/README.md @@ -2,7 +2,7 @@ Create a function that determines whether or not a given year is a leap year. Leap years are determined by the following rules: -> Leap years are years divisible by four (like 1984 and 2004). However, years divisible by 100 are not leap years (such as 1800 and 1900) unless they are divisible by 400 (like 1600 and 2000, which were in fact leap years). (Yes, it's all pretty confusing, but not as confusing as having July in the middle of the winter, which is what would eventually happen.) +> Leap years are years divisible by four (like 1984 and 2004). However, years divisible by 100 are not leap years (such as 1800 and 1900) unless they are divisible by 400 (like 1600 and 2000, which were in fact leap years). (Yes, it's all pretty confusing) > > -- [Learn to Program](https://pine.fm/LearnToProgram/chap_06.html) by Chris Pine