diff --git a/reverse-string.md b/reverse-string.md new file mode 100644 index 0000000..8f8eb09 --- /dev/null +++ b/reverse-string.md @@ -0,0 +1,7 @@ +### Reverse a String + +Write a function that takes a string as input and returns the string reversed. + +#### Example +Input: "hello" +Output: "olleh"