I have an array of arrays and want to filter all arrays which have the same elements, which might only differ in their order.
[[1,0,1],[1,1,0],[2,3,5]] => [[1,0,1],[2,3,5]]
or similiar. Maybe I should use the Set class for this? But maybe this can also be achieved with another method?