Scheme Exercises

back to exercise list       previous     next

Group:     Exercise: 23/48 

explode3:  explode a 3-digit number into the list of its digits

Create the function explode3 which will be given a 3-digit number and will create the list of its 3 digits. For instance:
(explode3 482) -> (4 8 2)