Reverse the Order of a String

Published by Alex Golubov in

Create a function that takes a string as its argument and returns the string in reversed order.

Examples

reverse("Hello World") ➞ "dlroW olleH"

reverse("The quick brown fox.") ➞ ".xof nworb kciuq ehT"

reverse("Edabit is really helpful!") ➞ "!lufpleh yllaer si tibadE"

Notes

You can expect a valid string for all test cases.

Watch a quick demo on how Edabit works.