Tag: set
-
posts
-
Python Sets
I had an application with two lists of unique items that I wanted to take the intersection of. I had figured that using a python set would be faster but I didn’t realize that it would be faster than the simple list comprehension by this much. ~$ ...