⬅︎ Back to Fastest way to uniqify a list in Python
fastest non preserving (?):def f7(seq):____S,L = set, list____return S(L(seq))
Comment
fastest non preserving (?):
def f7(seq):
____S,L = set, list
____return S(L(seq))