Code Review

Compare your solutions

    #| BEGIN (Write your solution here) |#
(define (solution row col)
  (cond ((= col 1) 1)
        ((= row 1) 1)
        ((= col row) 1)
        (else (+ (solution (- row 1) (- col 1))
                 (solution (- row 1) col)))
        ))
#| END |#