<< Previous exercise (2.86) | Index | Next exercise (2.88) >>
meterogan
;; add into polynomial package (define (zero-poly? poly) (define (zero-terms? termlist) (or (empty-termlist? termlist) (and (=zero? (coeff (first-term termlist))) (zero-terms? (rest-terms termlist))))) (zero-terms? (term-list poly)))
meterogan