Code Review
Compare your solutions
#| BEGIN (Введите свое решение) |#
(define (solution a b c)
(cond
[(or (>= b a c)(>= a b c)) (+ (* a a)(* b b))]
[(or (>= a c b)(>= c a b)) (+ (* a a)(* c c))]
[(or (>= b c a)(>= c b a)) (+ (* b b)(* c c))]))
#| END |#