Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define dx 0.00001)
(define (average x y z)
(/ (+ x y z) 3))
(define (smooth f)
(lambda (x)
(average (f (- x dx)) (f x) (f (+ x dx)))))
#| END |#
#| BEGIN (Write your solution here) |#
(define dx 0.00001)
(define (average x y z)
(/ (+ x y z) 3))
(define (smooth f)
(lambda (x)
(average (f (- x dx)) (f x) (f (+ x dx)))))
#| END |#