You are viewing a single comment's thread. Return to all comments →
Simple and straight-forward
def merge_the_tools(string, k): # your code goes here for i in range(0, len(string), k): print(''.join(list(dict.fromkeys(string[i: i + k]))))
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 →
Simple and straight-forward