How to use Racket functions to move through a number one digit at a time
Pick out the last digit
(remainder num 10)
Pick out the last two digits
(remainder num 100)
Chop off the last digit from a number
(truncate (/ num 10))