|
|
@@ -1,6 +1,10 @@
|
|
1
|
|
-# Reverse String
|
|
|
1
|
+# reverse-string
|
|
2
|
2
|
|
|
3
|
|
-For example: input: "cool" output: "looc"
|
|
|
3
|
+Reverse a string
|
|
|
4
|
+
|
|
|
5
|
+For example:
|
|
|
6
|
+input: "cool"
|
|
|
7
|
+output: "looc"
|
|
4
|
8
|
|
|
5
|
9
|
# Running the tests
|
|
6
|
10
|
|
|
|
@@ -12,6 +16,10 @@ $ gradle test
|
|
12
|
16
|
|
|
13
|
17
|
in your terminal.
|
|
14
|
18
|
|
|
|
19
|
+## Source
|
|
|
20
|
+
|
|
|
21
|
+Introductory challenge to reverse an input string [https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb](https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb)
|
|
|
22
|
+
|
|
15
|
23
|
## Submitting Incomplete Solutions
|
|
16
|
24
|
|
|
17
|
|
-It's possible to submit an incomplete solution so you can see how others have completed the exercise.
|
|
|
25
|
+It's possible to submit an incomplete solution so you can see how others have completed the exercise.
|