Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Easy and clear soultion solution in Clear category for Right to Left by piotr.sawicki
def left_join(phrases):
new_phrases = ""
for i in phrases:
i=i.replace("right", "left")
new_phrases += i + ","
return new_phrases[:-1]
Oct. 21, 2017