Skip to main content

Timeline for Fibonacci + Fizz Buzz = Fibo Nacci!

Current License: CC BY-SA 3.0

5 events
when toggle format what by license comment
Nov 10, 2015 at 13:14 comment added Sam Estep @SohamChowdhury Yes, as far as I can tell.
Nov 10, 2015 at 13:09 comment added Soham Chowdhury Am I right in guessing that this is basically the Clojure version of fibs = 0 : 1 : zipWith (+) fibs (tail fibs)?
Nov 10, 2015 at 11:54 comment added Sam Estep @ΚριτικσιΛίθος It lazily concatenates multiple sequences. In this case, it concatenates the first two elements of the Fibonacci sequence ([1 1]) with the result of summing each element in the Fibonacci sequence with the element following it.
Nov 10, 2015 at 5:02 comment added user41805 What is lazy-cat?
Nov 9, 2015 at 22:57 history answered Sam Estep CC BY-SA 3.0