Reputation: 3822
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.
Upvotes: -1
Views: 73
Reputation: 333
You would first need to make some methodology choices before you can actually implement a solution.
Some ideas for (1):
Once you have chosen desired methodology for (1) and (2), the implementation should not be too difficult.
Upvotes: 1