Code Review
Compare your solutions
#| BEGIN (Write your solution here) |#
(define (fringe tree)
(cond ((null? tree) '())
((not (pair? tree)) (list tree))
(else (append (fringe (car tree))
(fringe (cdr tree))))))
#| END |#