Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner: recursive solution in Creative category for Backward Each Word by przemyslaw.daniel
backward_string_by_word=b=lambda t,l='':(l+' ')*(c:=t[0]==' ')+b(t[1:],(t[0]+l)*(not c))if t else l
Feb. 28, 2020