Source code for kyu_8.remove_string_spaces.remove_string_spaces
"""
Solution for -> Remove String Spaces.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
"""
[docs]
def no_space(x: str) -> str:
"""
Remove the spaces from the string.
:param x: str
:return: str
"""
return x.replace(' ', '')