If you don't care about duplicates, `list1.size ==...
# announcements
k
If you don't care about duplicates,
list1.size == list2.size && list1.containsAll(list2)
, otherwise you'll have to sort them or convert them to a MultiSet of some kind.