First solution in Clear category for Backward String by pakicetus
def backward_string(val: str) -> str: return val[::-1]
July 2, 2020
Comments: