Simple solution in Clear category for Backward String by mindaugas.dadurkevicius
def backward_string(val): return val[::-1]
June 18, 2021
Comments: