This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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)))))) |
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