| |
solution:
solving the initial problem of just reversing a string can either be a
huge help or a frustrating hinderance. most likely the first attempt
will be to solve it the same way, by swapping letters at the front of
the string with letters at the back, and then adding some logic to keep
the words in order. this attempt will lead to confusion pretty quickly. |