First solution in Clear category for Backward String by StanislauL
def backward_string(val: str) -> str: return val[::-1]
Aug. 20, 2020
Comments: