⬅︎ Back to Fastest way to uniqify a list in Python
why on earth would you do that when you could do list(set(seq)) ??
what about dict(zip(seq,seq)).keys()
Perhaps you would want the ordering?
Comment
why on earth would you do that when you could do list(set(seq)) ??
Parent comment
what about dict(zip(seq,seq)).keys()
Replies
Perhaps you would want the ordering?