You are viewing a single comment's thread. Return to all comments →
def merge_the_tools(string, k): text = "" for i in string: text += "".join(i) if len(text) == k: for i in range(len(text)): s = "".join(sorted(set(text), key=text.index)) print(s) text = ""
Seems like cookies are disabled on this browser, please enable them to open this website
Merge the Tools!
You are viewing a single comment's thread. Return to all comments →