Problem Description
Given a shuffled sentence containing no more than 9 words, reconstruct and return the original sentence. Each word in the sentence has been appended with its 1-indexed word position, and the words can be rearranged.
Key Insights
- Each word in the shuffled sentence ends with a digit indicating its original position.
- The goal is to sort the words based on these appended digits.
- After sorting, the numbers can be removed to reconstruct the original sentence.
- The constraints ensure that the input is manageable in size (no more than 9 words).
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the words. Space Complexity: O(n) - for storing the words in a list.
Solution
To solve the problem, we can follow these steps:
- Split the input string into individual words.
- Create a list to store the words along with their respective positions.
- Sort the list of words based on the extracted numeric positions.
- Join the sorted words into a single string, omitting the numeric positions to reconstruct the original sentence.
We will use a list to hold the words and a sorting function to arrange them based on the numeric suffix.