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 PawelBubak
def left_join(phrases):
left=[]
for i in phrases:
i = i.replace("right","left")
left[len(left):] = [i]
wynik = ",".join(left)
return wynik
Oct. 28, 2016