Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Right to Left by m.dziardziel
def left_join(phrases):
word=""
for a in range(0,len(phrases)):
vv=phrases[a].replace("right","left")
word=word+vv
if a!=len(phrases)-1:
word=word+","
return word
Oct. 26, 2016