Created
September 25, 2012 03:41
-
-
Save shirok/3779859 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
(define (continued-fraction r) | |
(let loop ([p (numerator r)] | |
[q (denominator r)]) | |
(receive (quot rem) (quotient&remainder p q) | |
(if (zero? rem) | |
(list quot) | |
(lcons quot (loop q rem)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment