Code Review

Compare your solutions

    #| BEGIN (Введите свое решение) |#
(define (solution r c)
  (if (or (= c 1) (= r c))
      1
      (+ (solution (- r 1) (- c 1))
         (solution (- r 1) c))))

#| END |#