Created
April 22, 2015 13:08
-
-
Save bostonou/41b9ea73a965d9e17ad6 to your computer and use it in GitHub Desktop.
lazy-cat-fib 1
This file contains hidden or 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
(take 1 head-fibo) | |
(take 1 (lazy-cat [0N 1N] (map + head-fibo (rest head-fibo)))) | |
(take 1 (concat (lazy-seq [0N 1N]) | |
(lazy-seq (map + head-fibo (rest head-fibo))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment