Code Review
Compare your solutions
#| BEGIN (Write your solution here) |#
(define (quadrado a)
(* a a))
(define (soma-de-quadrados a b)
(+ (quadrado a) (quadrado b)
))
(define (solution a b c)
(cond
((and (<= a b) (<= a c)) (soma-de-quadrados b c))
((and (<= b a) (<= b c)) (soma-de-quadrados a c))
(else (soma-de-quadrados a b))
))
#| END |#