From 95b767dc878d7caf6a523178d18e047d8abacafc Mon Sep 17 00:00:00 2001 From: Simon Shine Date: Fri, 14 Dec 2018 07:39:14 +0100 Subject: [PATCH] Leap: Remove recommendation to DIY in description Leap-year functions don't generally occur in standard libraries. Is there a single example of a language we have that does this? If there is one, then that would be the right way to solve this exercise in that language. Presumably this exercise is primarily placed at the top of core tracks. We should not encourage to re-implement standard library functions at that point. But this is a hypothetical argument. --- exercises/leap/description.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/exercises/leap/description.md b/exercises/leap/description.md index 1dde7c2c73..e952c3a337 100644 --- a/exercises/leap/description.md +++ b/exercises/leap/description.md @@ -11,9 +11,6 @@ on every year that is evenly divisible by 4 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