Second solution in Clear category for Backward String by mscislaw
def backward_string(val: str) -> str: return val[::-1]
May 2, 2021