Skip to content

Instantly share code, notes, and snippets.

@ecounysis
Created September 6, 2011 22:37
Show Gist options
  • Save ecounysis/1199203 to your computer and use it in GitHub Desktop.
Save ecounysis/1199203 to your computer and use it in GitHub Desktop.
Exercise 2.18
(define (new-reverse ls1)
(define (rev-acc ls2 acc)
(if (null? ls2)
acc
(rev-acc (cdr ls2) (cons (car ls2) acc))))
(rev-acc ls1 '()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment