Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Backward Each Word solution in Clear category for Backward Each Word by DmytroKaminskiy
def backward_string_by_word(text: str) -> str:
return ' '.join(map(lambda x: x[::-1], text.split(' ')))
April 13, 2020