Write a function that reverses a string. The input string is given as a string `s`.
Return the reversed string.
def reverse_string(s: str) -> str:
Write a function that reverses a string. The input string is given as a string `s`.
Return the reversed string.
def reverse_string(s: str) -> str: