Code Review
Compare your solutions
#| BEGIN (Write your solution here) |#
(define (square x) (* x x))
(define (solution x y z)
(- (+ (square x)
(square y)
(square z))
(square (min x y z))))
#| END |#
#| BEGIN (Write your solution here) |#
(define (square x) (* x x))
(define (solution x y z)
(- (+ (square x)
(square y)
(square z))
(square (min x y z))))
#| END |#