Problem
1. Write a function that takes a string and prints out the letters in the string in reverse order.
2. Write a function that finds and removes all but the first occurrence of a given string in a passed string.
3. Write a function to uppercase every other word in a passed sentence. So given "The dog ran a long way," it would output "The DOG ran A long WAY."