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 narumi.kano.3
def left_join(phrases):
"""
Join strings and replace "right" to "left"
"""
return ",".join([word.replace("right", "left") for word in phrases])
Jan. 10, 2015
Comments: