Skip to content

Instantly share code, notes, and snippets.

@drguildo
Created November 5, 2011 02:10
Show Gist options
  • Save drguildo/1340990 to your computer and use it in GitHub Desktop.
Save drguildo/1340990 to your computer and use it in GitHub Desktop.
4clojure problem #26
#((fn fib [n xs]
(if (not (zero? n))
(fib
(dec n)
(conj xs (+ (first (reverse xs)) (fnext (reverse xs)))))
xs)) (- % 2) [1 1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment