Problem: Determine the Number of Digits in an Integer

General form:
 (define num-digits
   (lambda (n)
     (if (< n 10)
         1
         _________)))

Q: What is the recursive case?

A: Return 1 plus the result of calling num-digits on (quotient n 10)