slice solution in Clear category for Backward String by yoichi
def backward_string(val: str) -> str: return val[::-1]
Feb. 28, 2020
Comments: