Created
November 13, 2017 10:48
-
-
Save aibrahim/f48b8d35eaa4e63013dd66e07fce47cc to your computer and use it in GitHub Desktop.
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 fast-fib [n] | |
(if (== n 0) | |
[0, 1] | |
(let [[a, b] (fast-fib (/ n 2)) | |
c (* a (- (* b 2) a)) | |
d (+ (* a a) (* b b))] | |
(if (zero? (mod n 2)) | |
[c, d] | |
[d, (+ c d)])))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment