From 305ad2dfc8e47c5a53c6c8e471033a3e4ba5e759 Mon Sep 17 00:00:00 2001 From: Bhagyesh Pathak <165566941+bhagyeshsp@users.noreply.github.com> Date: Sat, 16 Nov 2024 22:26:40 +0530 Subject: [PATCH] Update 06_leapYears README.md with a reference I updated the README with an external link outlining the nested rules for leap years. The present problem statement, borrowed from Chris Pine, does not clearly state these rules, which is indeed confusing. To scaffold the learner's journey, it would be useful to add a reference that walks them through the leap year rules with examples. It difficult to stick to the practice exercise if the learner has to shoot in the dark without knowing the exact rules of the game. --- 06_leapYears/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/06_leapYears/README.md b/06_leapYears/README.md index c4134da..0bd8e27 100644 --- a/06_leapYears/README.md +++ b/06_leapYears/README.md @@ -10,6 +10,7 @@ Create a function that determines whether or not a given year is a leap year. Le leapYears(2000) // is a leap year: returns true leapYears(1985) // is not a leap year: returns false ``` +Still confused? Refer to [this breakdown](https://time-and-calendar.com/leap-years/#:~:text=How%20to%20Know%20if%20Certain%20Year%20is%20a%20Leap%20Year) with examples. ## Hints