Skip to content

Instantly share code, notes, and snippets.

@yao2030
Created December 11, 2012 02:22
Show Gist options
  • Save yao2030/4255329 to your computer and use it in GitHub Desktop.
Save yao2030/4255329 to your computer and use it in GitHub Desktop.
(define (fringe x)
(cond ((null? x) x)
((not (pair? x)) (list x))
(list (append (fringe (car x)) (fringe (cdr x))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment