Given a string s, return the string reversed.
You must reverse the string in-place if working with a character array, but for this problem simply return the reversed version of the input string.
Input: A single string s (may include spaces, digits, or special characters).
Output: A single string — the reverse of the input.
Input: hello
Output: olleh
Explanation: Reading 'hello' from right to left gives 'o','l','l','e','h' → 'olleh'.Input: racecar
Output: racecar
Explanation: 'racecar' is a palindrome so reversing it gives the same string.Input: Hello World
Output: dlroW olleH
Explanation: Reverse every character including the space: 'Hello World' → 'dlroW olleH'.0 <= s.length <= 10^5s consists of printable ASCII characters