This exercise was very easy.
I played with partial and the thread last macro (->>) to try to make the solution more readable:
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 difference-of-squares) | |
(def ^:private naturals | |
(drop 1 (range))) | |
(def ^:private sum | |
(partial reduce +)) | |
(defn- square [n] | |
(* n n)) | |
(def ^:private square-all | |
(partial map square)) | |
(defn square-of-sums [n] | |
(->> (take n naturals) | |
sum | |
square)) | |
(defn sum-of-squares [n] | |
(->> (take n naturals) | |
square-all | |
sum)) | |
(defn difference [n] | |
(- (square-of-sums n) | |
(sum-of-squares n))) |
You can see that version in Euler Project: Problem 6 in Clojure
You can nitpick my solution here and/or see all the exercises I've done so far in this repository.
No comments:
Post a Comment