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