diff --git a/03.Strings/1.Easy/02.Reverse_words_in_string.cpp b/03.Strings/1.Easy/02.Reverse_words_in_string.cpp index 83725fb..e9b950d 100644 --- a/03.Strings/1.Easy/02.Reverse_words_in_string.cpp +++ b/03.Strings/1.Easy/02.Reverse_words_in_string.cpp @@ -5,7 +5,7 @@ A word is defined as a sequence of non-space characters. The words in s will be Return a string of the words in reverse order concatenated by a single space. Note that s may contain leading or trailing spaces or multiple spaces between two words. The returned string should only have a single space separating the words. Do not include any extra spaces. -Example: +Example:juygfigigg ufuf Input: s = "the sky is blue" Output: "blue is sky the"