Reverse the String InterviewBit Solution
- illuminati
- Feb 16, 2021
- 1 min read
Updated: May 9, 2021
Problem: Reverse the String
Problem Description:
Given a string A.
Return string A after reversing the string word by word.
NOTE:
A sequence of non-space characters constitutes a word.
Your reversed string should not contain leading or trailing spaces, even if it is present in the input string.
If there are multiple spaces between words, reduce them to a single space in the reversed string.
Input Format
The only argument given is string A.
Output Format
Return the string A after reversing the string word by word.
For Example
Input 1:
A = "the sky is blue"
Output 1:
"blue is sky the"
Input 2:
A = "this is ib"
Output 2:
"ib is this"
Solution:
Code in C++
Recent Posts
See AllGiven an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target.
Given a string A representing JSON object. Return an array of the string denoting JSON object with proper indentation.
Comments