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