Skip to content

Commit

Permalink
add Medium_151_Reverse_Words_in_a_String
Browse files Browse the repository at this point in the history
  • Loading branch information
zongyanqi committed Mar 20, 2017
1 parent d756fe9 commit b768505
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Medium_151_Reverse_Words_in_a_String.js
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(' ');
};

0 comments on commit b768505

Please sign in to comment.