Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define (solution row col)
(if (or (= row 1) (= col 1) (= col row))
1
(+ (solution (- row 1) col)
(solution (- row 1) (- col 1)))))
#| END |#
#| BEGIN (Write your solution here) |#
(define (solution row col)
(if (or (= row 1) (= col 1) (= col row))
1
(+ (solution (- row 1) col)
(solution (- row 1) (- col 1)))))
#| END |#