Created
February 23, 2015 04:00
-
-
Save kouddy/ffafc99fff33536e5c5c 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
;;; (fast-mult 3 15) | |
(fast-mult-iter 0 3 15) | |
(fast-mult-iter 3 3 14) | |
(fast-mult-iter 3 6 7) | |
(fast-mult-iter 9 6 6) | |
(fast-mult-iter 9 12 3) | |
(fast-mult-iter 21 12 2) | |
(fast-mult-iter 21 24 1) | |
(fast-mult-iter 45 24 0) | |
45 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment