SliceStepBackwards solution in Clear category for Backward String by klukvenka
def backward_string(val: str) -> str: return val[::-1]
July 15, 2021