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 Khrystyna11
def left_join(phrases):
"""
Join strings and replace "right" to "left"
"""
# result = ""
# for i, el in enumerate(phrases, 1):
# t = el.replace('right', 'left')
# result += t
# if i != len(phrases):
# result += ','
# return result
return ','.join(phrases).replace('right', 'left')
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
print(left_join(("left", "right", "left", "stop")))
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"
# txt1 = "bright aright,"
# txt2 = "ok"
# txt1 = txt1.replace('right','left')
# print(txt1,txt2)
July 9, 2024
Comments: