wes d2a2ba9e15 first commit 4 年之前
..
README.md d2a2ba9e15 first commit 4 年之前
code.cpp d2a2ba9e15 first commit 4 年之前
unitTest.cpp d2a2ba9e15 first commit 4 年之前

README.md

Reverse the Order of a String

by Alex Golubov tags: strings, formatting, sorting

Summary

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.

Instructions

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.