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.


    # Artem Stepanenko
    3 years ago

    (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)) ) )

    # Konstantin
    2 years ago

    Что должна вернуть функция в случае такого набора (2 2 3)?

    # Anton Burenkov Replied to Konstantin #
    2 years ago
    Что должна вернуть функция в случае такого набора (2 2 3)?

    Сумму квадрата любой из 2 и квадрата 3. Спасибо, сделал PR c добавлением подобной проверки - https://github.com/Hexlet/hexlet-sicp/pull/1249

Authentication required

You must log in to post a comment.

Login