Skip to content

Instantly share code, notes, and snippets.

@voodootikigod
Created November 11, 2008 02:17
Show Gist options
  • Save voodootikigod/23718 to your computer and use it in GitHub Desktop.
Save voodootikigod/23718 to your computer and use it in GitHub Desktop.
(define (fast-expt b n)
(define (iter a b count)
(cond ((= count 0) a)
((even? count) (iter a (square b) (/ count 2)))
(else (iter (* a b) b (- count 1)))))
(iter 1 b n))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment