Skip to content

Instantly share code, notes, and snippets.

@kouddy
Created April 12, 2015 18:54
Show Gist options
  • Save kouddy/55e21a27915d362573ec to your computer and use it in GitHub Desktop.
Save kouddy/55e21a27915d362573ec to your computer and use it in GitHub Desktop.
(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