commit 0b299c6d20c2bc70211714e5552d0093ece465f3
parent bd7d8a2ccbd7a6c159c774d48b2054ae72284665
Author: dwrz <dwrz@dwrz.net>
Date: Wed, 6 Feb 2019 09:36:56 +0000
Add elisp/leap
Diffstat:
3 files changed, 73 insertions(+), 0 deletions(-)
diff --git a/elisp/leap/README.md b/elisp/leap/README.md
@@ -0,0 +1,33 @@
+# Leap
+
+Given a year, report if it is a leap year.
+
+The tricky thing here is that a leap year in the Gregorian calendar occurs:
+
+```plain
+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
+## Source
+
+JavaRanch Cattle Drive, exercise 3 [http://www.javaranch.com/leap.jsp](http://www.javaranch.com/leap.jsp)
+
+## Submitting Incomplete Solutions
+It's possible to submit an incomplete solution so you can see how others have completed the exercise.
diff --git a/elisp/leap/leap-test.el b/elisp/leap/leap-test.el
@@ -0,0 +1,24 @@
+;;; leap-test.el --- Tests for Leap exercise (exercism)
+
+;;; Commentary:
+
+;;; Code:
+(load-file "leap.el")
+
+(ert-deftest vanilla-leap-year ()
+ (should (leap-year-p 1996)))
+
+(ert-deftest any-old-year ()
+ (should-not (leap-year-p 1997)))
+
+(ert-deftest non-leap-even-year ()
+ (should-not (leap-year-p 1997)))
+
+(ert-deftest century ()
+ (should-not (leap-year-p 1900)))
+
+(ert-deftest exceptional-century ()
+ (should (leap-year-p 2000)))
+
+(provide 'leap-test)
+;;; leap-test.el ends here
diff --git a/elisp/leap/leap.el b/elisp/leap/leap.el
@@ -0,0 +1,16 @@
+;;; leap.el --- Leap exercise (exercism)
+
+;;; Commentary:
+
+;;; Code:
+
+(provide 'leap)
+
+(defun leap-year-p (year)
+"Return whether a given year is a leap-year."
+ (when (= (mod year 4) 0)
+ (if (= (mod year 100) 0)
+ (when (= (mod year 400) 0) t)
+ t)))
+
+;;; leap.el ends here