Code Review
Compare your solutions
#| BEGIN (Write your solution here) |#
(define (solution row col)
(if (or (= col 1) (= col row))
1
(+ (solution (- row 1) (- col 1))
(solution (- row 1) col))))
#| END |#
#| BEGIN (Write your solution here) |#
(define (solution row col)
(if (or (= col 1) (= col row))
1
(+ (solution (- row 1) (- col 1))
(solution (- row 1) col))))
#| END |#