Sum of the squares
Define a procedure
solution
that takes three numbers as arguments and returns the sum of the squares of the two larger numbers.
Что должна вернуть функция в случае такого набора (2 2 3)?
Сумму квадрата любой из 2 и квадрата 3. Спасибо, сделал PR c добавлением подобной проверки - https://github.com/Hexlet/hexlet-sicp/pull/1249
(define (square x) (* x x))
(define (sum_of_squares first second) (+ (square first) (square second)) )
(define (sum_of_squares_of_big a b c) (sum_of_squares (max a b c) (max (min a b) (min a c) (min b c)) ) )