First solution in Clear category for Backward String by melitaele
def backward_string(val: str) -> str: return val [::-1]
April 9, 2021
Comments: