forked from xiaoyu2er/leetcode-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Medium_151_Reverse_Words_in_a_String
- Loading branch information
zongyanqi
committed
Mar 20, 2017
1 parent
d756fe9
commit b768505
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* Given an input string, reverse the string word by word. | ||
For example, | ||
Given s = "the sky is blue", | ||
return "blue is sky the". | ||
*/ | ||
|
||
/** | ||
* @param {string} str | ||
* @returns {string} | ||
*/ | ||
var reverseWords = function (str) { | ||
return str.split(' ') | ||
.filter(w => w) | ||
.reverse() | ||
.join(' '); | ||
}; |