Created
April 29, 2015 02:45
-
-
Save kouddy/75398109580de06a3933 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 (reverse sequence) | |
(fold-right (lambda (x y) (cons y x)) null sequence)) | |
(define (reverse2 sequence) | |
(fold-left (lambda (x y) (cons y x)) null sequence)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment