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