Code Review

Compare your solutions

    #| BEGIN (Введите свое решение) |#
(define (square x) (* x x))
(define (sum_of_squares a b) (+ (square a) (square b)))
(define (solution a b c) (sum_of_squares (max a b c) (max (min a b) (min b c) (min a c))))
#| END |#