Remove Spaces from String Problem
Remove Spaces from String Problem — ExecCode School DSA Practice
Solve the Remove Spaces from String problem on ExecCode. Free online school DSA practice in Strings - Basics. Write and run code in Java, C++, Python — no signup required to run.
Problem description
You are given a line of text. Your task is to if you find two or more spaces right next to each other, change them into just one single space. Then, print the text with these corrected spaces.
Examples
Input Hello World; Output Hello World. Input SingleWord; Output SingleWord
Constraints
1<=len(S)<=10^4
Practice Remove Spaces from String free on ExecCode. Browse DSA problems, topic map, and placement guides.