The Negative Case

Write one procedure to do the work of both:
     (define num-digits-in-satisfying
       (lambda (n test?)
         (cond ((< n 0) (num-digits-in-satisfying (- n) test?))
               ((< n 10) _____________________)
	       ...)))