Clean Spaces

Users often type text with extra spaces at the beginning, at the end, or between words. Write a function trim_spaces that cleans up the string s: remove spaces around the edges and replace multiple inner spaces with a single space. If the string contains only spaces, return an empty string.

Примеры

Ввод
" hello world "
Вывод
"hello world"
Ввод
"a b c"
Вывод
"a b c"
Ввод
" "
Вывод
""

Нужно реализовать

def trim_spaces(s: str) -> str:

Теги

strings
PostgreSQLv16

Aquí aparecerá el resultado de la ejecución del código

Tests12
Visible tests
Prueba oculta 7
Prueba oculta 8
Prueba oculta 9
Prueba oculta 10
Prueba oculta 11
Prueba oculta 12

They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.

Focus radio
Paused · SomaFM · Fluid