As I said then, the solution in Clojure was not idiomatic at all. I just wanted to write a stream in Clojure similar to the ones I had studied in the Coursera Programming Languages course.
This new version is a much more simple and Clojurist way of solving the same problem using the iterate function:
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 grains) | |
(def grains (iterate #(* 2 %) 1N)) | |
(defn square [sqr-num] | |
(nth grains (- sqr-num 1))) | |
(defn total [] | |
(reduce + 0 (take 64 grains))) |
The iterate function generates a lazy sequence containing the number of grains in each square. The square and total functions realize that lazy sequence to get the content of a given square and the sum of the 64 squares of the chess board, respectively.
You can nitpick my solution here or see all the exercises I've done so far in this repository.
No comments:
Post a Comment