Created
April 12, 2015 18:54
-
-
Save kouddy/55e21a27915d362573ec 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 (map proc sequence) | |
(accumulate (lambda (x y) (cons (proc x) y)) null sequence)) | |
(define (append seq1 seq2) | |
(accumulate cons seq2 seq1)) | |
(define (length sequence) | |
(accumulate (lambda (x y) (+ y 1)) 0 sequence)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment