Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Right to Left by Mahoter
def left_join(phrases):
"""
Join strings and replace "right" to "left"
"""
phrases = list(phrases)
wrdnum=0
for wrd in phrases:
x=0
y=5
while (y-1) <= len(wrd):
if wrd[x:y] == "right":
wrd = wrd[0:x]+"left"+wrd[y:len(wrd)]
phrases[wrdnum] = wrd
x +=1
y +=1
wrdnum += 1
res = phrases[0]
for a in range(len(phrases)-1):
res = res+","+phrases[a+1]
return res
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert left_join(("left", "right", "left", "stop")) == "left,left,left,stop", "All to left"
assert left_join(("bright aright", "ok")) == "bleft aleft,ok", "Bright Left"
assert left_join(("brightness wright",)) == "bleftness wleft", "One phrase"
assert left_join(("enough", "jokes")) == "enough,jokes", "Nothing to replace"
Jan. 17, 2016