First solution in Clear category for Backward String by catloverss
def backward_string(val: str) -> str: return val[::-1]
Dec. 4, 2025
Comments: