First solution in Clear category for Backward String by estelle.doriot
def backward_string(val: str) -> str: return val[::-1]
July 25, 2023
Comments: