Reverse a string by word. For instance, given "The sky is blue", output "blue is sky The". Language didn't matter.
Sigiloso
Opt 1. Parse the string, put in stack, pop to create reverse string. Opt 2. Parse the string, run for loop through array in reverse order