Skip to content

Instantly share code, notes, and snippets.

@bostonou
Created April 22, 2015 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bostonou/41b9ea73a965d9e17ad6 to your computer and use it in GitHub Desktop.
Save bostonou/41b9ea73a965d9e17ad6 to your computer and use it in GitHub Desktop.
lazy-cat-fib 1
(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