Wednesday, March 23, 2016

LeetCode Q151: Reverse Words in a String

Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
Update (2015-02-12):
For C programmers: Try to solve it in-place in O(1) space.


Round 2 solution:

No comments:

Post a Comment