Re: finding the intersection of a list of Sets



That should have been:

>>> sets.sort(key=len)
>>> reduce(set.intersection, sets)

The only refinement was the pre-sort based on set length.

.