Reverse String Function

Easy

Input: `s` (str). Return: The reversed string.

Example

Input: 'abc'
Output: 'cba'
Run your code to see output