Skip to content

Instantly share code, notes, and snippets.

Created January 4, 2012 15:04
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 anonymous/1560424 to your computer and use it in GitHub Desktop.
Save anonymous/1560424 to your computer and use it in GitHub Desktop.
;; minikomi's solution to Fibonacci Sequence
;; https://4clojure.com/problem/26
(fn fib [n]
(loop [counter n accu '(1) lastsum 1]
(if (= counter (count accu)) (reverse accu)
(recur counter (conj accu lastsum) (+ lastsum (first accu))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment