Reverse Words in a String
Try to solve the Reverse Words in a String problem.
We'll cover the following
Statement
You are given a string, sentence
, comprising words and leading or trailing spaces or multiple spaces between words. Your task is to reverse the order of its words without affecting the order of letters within the given word. Return the modified sentence
.
Note: A word is defined as a continuous sequence of non-space characters. Multiple words separated by single spaces form a valid English sentence. Therefore, ensure there is only a single space between any two words in the returned string, with no leading, trailing, or extra spaces.
Constraints:
The
sentence
contains English uppercase and lowercase letters, digits, and spaces.There is at least one word in a
sentence
.sentence.length
Examples
Create a free account to view this lesson.
Continue your learning journey with a 14-day free trial.
By signing up, you agree to Educative's Terms of Service and Privacy Policy