Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define (sub-interval x y)
(make-interval (- (lower-bound x) (upper-bound y))
(- (upper-bound x) (lower-bound y))))
(define (lower-bound interval)
(car interval))
(define (upper-bound interval)
(cdr interval))
#| END |#