Put all the arrays you want to compare into two families: listA,listB
The first step is to compare every two pair of arrays, and check if their sizes are the same. Here's a way to do that:
for "a" from 0 to listA.count-2
system: pick instance # loopindex("a") of listA
for "b" from loopindex("a")+1 to listB.count-1
system: pick instance # loopindex("b") of listB
system: compare listA.width = listB.width
--- sub event
The sub event is how you compare the values in the two lists. If you sort the lists then it's simple and you can compare each index of each pair of lists. If you don't want the lists' values to be sorted then then you can copy the lists using asJson to two different arrays and sort them first.