Created
March 30, 2012 01:05
-
-
Save Geekfish/2245461 to your computer and use it in GitHub Desktop.
Clojure nth Fibonacci
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
(nth (map first (iterate (fn [[a b]] [b (+ a b)]) (double-array [1 1]))) 1475) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment