if I have a list of arrays e.g;
[0,1,1,0,1,1,0]
[1,0,1,0,0,0,1]
[1,0,1,0,1,1,1]
[1,0,1,0,1,0,1]
[0,1,0,0,0,0,0]
[1,0,0,0,0,0,1]
[1,0,1,0,1,1,1]
[1,0,1,0,0,0,1]
and I want to find the n arrays the least like the others, what would be the best method?
e.g; I want two arrays that are the least similar to the group as a whole.