Problem
1. Consider the task of removing all punctuation marks from a string. How can we break the string into smaller strings that can be processed recursively?
2. In a recursive method that removes all punctuation marks from a string, we decide to remove the last character, then recursively process the remainder. How do you combine the results?
3. How do you find solutions for the simplest inputs when removing punctuation marks from a string?