⬅︎ Back to Fastest way to uniqify a list in Python
Speed tip: make local references in functions for builtinsdef foo():____L = []____AppendToListL = L.append......____AppendToListL(item)
Comment
Speed tip:
make local references in functions for builtins
def foo():
____L = []
____AppendToListL = L.append
...
...
____AppendToListL(item)