Saturday, July 5, 2014

Exercism: "Leap year in Clojure"

This is my solution to the Leap Year problem in Clojure:

(ns leap)
(defn leap-year? [year]
(let
[divisible-by? (comp zero? (partial rem year))
(or
(divisible-by? 400)
(and
(divisible-by? 4)
(not (divisible-by? 100))))))
view raw leap.clj hosted with ❤ by GitHub

I created a local helper, divisible-by?, using comp and partial to make the code more readable.

You can nitpick my solution here or see all the exercises I've done so far in this repository.

No comments:

Post a Comment