Skip to content

Instantly share code, notes, and snippets.

@kouddy
Created February 23, 2015 04:00
Show Gist options
  • Save kouddy/ffafc99fff33536e5c5c to your computer and use it in GitHub Desktop.
Save kouddy/ffafc99fff33536e5c5c to your computer and use it in GitHub Desktop.
;;; (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