0 out of 68 challenges solved
def reverse_string(string): """ Reverses the characters in the given string. Args: string (str): The input string. Returns: str: A new string with the characters reversed. """ # TODO: Implement the reverse_string function pass