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