Just as we did for the evaluation problem, we can resolve this issue of reversed digits by using an accumulating parameter: that is, rather than building up with a cons of each element onto a recursive result, returning nil in the end, we send an extra parameter into each call, build up by consing onto it, and then returning it in the end.
|
|
[]
in the beginning: in practice, we could
make a main definition which always supplied this for us, and make the
recursive definition above just a "helper function"