Code Review

Compare your solutions

    (define (solution a b c) (cond ((and (< a b) (< a c)) (+ (* b b) (* c c)))
                                            ((and (< b a) (< b c)) (+ (* a a) (* c c)))
                                            (else (+ (* a a) (* b b))) ))