First solution in Clear category for Backward String by vbncursed
def backward_string(val: str) -> str: # your code here return val[::-1]
April 16, 2024