We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 448858a commit e219476Copy full SHA for e219476
problem65/problem.md
@@ -0,0 +1,6 @@
1
+
2
+## Problem 65:
3
4
+### Create a function that takes a string as input and returns the reversed version of the string without using the built-in reverse() method.
5
6
+**Example `Input: "hello world"` Example `Output: "dlrow olleh"`**
problem65/problme65.js
@@ -0,0 +1,4 @@
+/* : Create a function that takes a string as input and returns the reversed version of the string without using the built-in reverse() method. */
+/* Example Input: "hello world" Example Output: "dlrow olleh" */
0 commit comments