Rearrange Spaces Between Words — LeetCode 1592 Python Solution

EasyString
Problem
#1592
Pattern
Hash Map
Reading time
2 min

The problem

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.

Example

Input
text = " this is a sentence "
Output
"this is a sentence"
Explanation
There are a total of 9 spaces and 4 words. We can evenly divide the 9 spaces between the words: 9 / (4-1) = 3 spaces.

Python solution

Python
class Solution:
    def reorderSpaces(self, text: str) -> str:
        spaces = text.count(" ")
        words = text.split()
        if len(words) == 1:
            return words[0] + " " * spaces
        cnt, mod = divmod(spaces, len(words) - 1)
        return (" " * cnt).join(words) + " " * mod

Complexity

MeasureComplexity
TimeO(n)
SpaceO(n), where n represents the length of the string \textit{text} auxiliary

Pattern: Hash Map

Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 1592. Rearrange Spaces Between Words is filed here because the reference solution below belongs to the algorithm family this hub collects, even though its LeetCode tags point elsewhere.

The hash map guide has the Python template for the pattern and the 709 LeetCode problems that use it.

Related problems

Frequently asked questions

How hard is LeetCode 1592. Rearrange Spaces Between Words?
LeetCode 1592. Rearrange Spaces Between Words is rated Easy on LeetCode.
What is the time complexity of LeetCode 1592. Rearrange Spaces Between Words?
The Python solution on this page runs in O(n).
What is the space complexity of LeetCode 1592. Rearrange Spaces Between Words?
The Python solution on this page uses O(n), where n represents the length of the string \textit{text} auxiliary space.
What topics does LeetCode 1592. Rearrange Spaces Between Words cover?
LeetCode 1592. Rearrange Spaces Between Words is tagged String on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview