0 out of 68 challenges solved

Reverse characters in a string

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