Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define (fringe x)
(cond ((null? x) '())
((not (pair? x)) (list x))
(else (append (fringe (car x))
(fringe (cdr x))))))
#| END |#
#| BEGIN (Write your solution here) |#
(define (fringe x)
(cond ((null? x) '())
((not (pair? x)) (list x))
(else (append (fringe (car x))
(fringe (cdr x))))))
#| END |#
#| BEGIN (Write your solution here) |#
(define (fringe x)
(cond ((null? x) '())
((not (pair? x)) (list x))
(else (append (fringe (car x))
(fringe (cdr x))))))
#| END |#
#| BEGIN (Write your solution here) |#
(define (fringe x)
(cond ((null? x) '())
((not (pair? x)) (list x))
(else (append (fringe (car x))
(fringe (cdr x))))))
#| END |#