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