-
-
Save kpmaynard/06d638428479e2f759ac to your computer and use it in GitHub Desktop.
bottom up fibonacci
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
(defn fib [n] | |
(def memo {0 0 1 1}) | |
(for [k (range (inc n))] | |
(when (> k 1) | |
(assoc memo k (+ (memo (- k 1)) (memo (- k 2))))) | |
) | |
(memo n) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment