How to efficiently compare two unordered lists (not sets) in Python? How to efficiently compare two unordered lists (not sets) in Python? python python

How to efficiently compare two unordered lists (not sets) in Python?


O(n): The Counter() method is best (if your objects are hashable):

def compare(s, t):    return Counter(s) == Counter(t)

O(n log n): The sorted() method is next best (if your objects are orderable):

def compare(s, t):    return sorted(s) == sorted(t)

O(n * n): If the objects are neither hashable, nor orderable, you can use equality:

def compare(s, t):    t = list(t)   # make a mutable copy    try:        for elem in s:            t.remove(elem)    except ValueError:        return False    return not t


You can sort both:

sorted(a) == sorted(b)

A counting sort could also be more efficient (but it requires the object to be hashable).

>>> from collections import Counter>>> a = [1, 2, 3, 1, 2, 3]>>> b = [3, 2, 1, 3, 2, 1]>>> print (Counter(a) == Counter(b))True


If you know the items are always hashable, you can use a Counter() which is O(n)
If you know the items are always sortable, you can use sorted() which is O(n log n)

In the general case you can't rely on being able to sort, or has the elements, so you need a fallback like this, which is unfortunately O(n^2)

len(a)==len(b) and all(a.count(i)==b.count(i) for i in a)