Merge pull request #506 from bhagyeshsp/patch-2

Update 06_leapYears README.md with a reference
This commit is contained in:
Josh Smith
2025-02-02 17:13:50 -07:00
committed by GitHub
+1
View File
@@ -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 <cite>[this breakdown](https://time-and-calendar.com/leap-years/#:~:text=How%20to%20Know%20if%20Certain%20Year%20is%20a%20Leap%20Year)<cite> with examples.
## Hints