We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98e0d9b commit 0997611Copy full SHA for 0997611
字符串翻转.js
@@ -0,0 +1,5 @@
1
+function str(s) {
2
+ return s.split(" ").map(res => {
3
+ res.reverse().join('')
4
+ }).join(" ")
5
+}
0 commit comments