Skip to content

Commit e219476

Browse files
problme 65 init complete
1 parent 448858a commit e219476

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

problem65/problem.md

+6
Original file line numberDiff line numberDiff line change
@@ -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

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* : Create a function that takes a string as input and returns the reversed version of the string without using the built-in reverse() method. */
2+
3+
/* Example Input: "hello world" Example Output: "dlrow olleh" */
4+

0 commit comments

Comments
 (0)