Code Review
Compare your solutions
(define (solution row col)
(cond ((= row 1) 1)
((or (= col 1) (= row col)) 1)
(#t (+ (solution (- row 1) (- col 1))
(solution (- row 1) col)))))
(define (solution row col)
(cond ((= row 1) 1)
((or (= col 1) (= row col)) 1)
(#t (+ (solution (- row 1) (- col 1))
(solution (- row 1) col)))))