Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Sağlar sola dönsün solution in Clear category for Right to Left by unluerkan
def left_join(phrases: tuple) -> str:
"""
Join strings and replace "right" to "left"
"""
text = ""
#First Method (join and replace, shortcut)
txt = ",".join(phrases)
return txt.replace('right','left')
#Second Method (for iteration and replace, long way)
"""for word in phrases:
if "right" in word:
if word == "right":
text += "left,"
continue
else:
text += word.replace("right", "left")
else:
text += word
text += ","
return text[:-1]"""
if __name__ == '__main__':
print('Example:')
print(left_join(("left", "right", "left", "stop")))
#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"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
May 29, 2021