You are viewing a single comment's thread. Return to all comments →
def merge_the_tools(string, k): u, t = '', '' for i in string: t += i if i not in u: u += i if len(t) == k: print(u) t = u = '' ` if __name__ == '__main__':
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 →