Problem Description
You are given a string text
of words that are placed among some number of spaces. Each word consists of one or more lowercase English letters and are separated by at least one space. It's guaranteed that text
contains at least one word. Rearrange the spaces so that there is an equal number of spaces between every pair of adjacent words and that number is maximized. If you cannot redistribute all the spaces equally, place the extra spaces at the end, meaning the returned string should be the same length as text
. Return the string after rearranging the spaces.
Key Insights
- Count the total number of spaces in the input string.
- Split the input string into words to determine how many words there are.
- Calculate the maximum number of spaces that can be placed between words.
- Distribute the spaces evenly between the words and place any remaining spaces at the end of the string.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input string. Space Complexity: O(n), for storing the split words and the final result.
Solution
To solve this problem, we can use the following steps:
- Count the total number of spaces in the input string.
- Split the input string into words to determine the number of words.
- Calculate the maximum number of spaces to be placed between each pair of adjacent words using integer division of the total spaces by the number of gaps (number of words - 1).
- Construct the final string by adding the words and the calculated spaces, and append any remaining spaces at the end.