Nice trick. What would this solution work for? I mean iterables of ints, floats, strings I guess it's ok. How about iterables of your own class objects ? Would these work if eq or hash is implemented ? – BogdanAug 11 '11 at 12:27
So long as they compare equal it will work; code equivalent to the implementation is at the link in my answer. So, just implement __eq__ (and also __hash__ because objects that are equal need to hash the same) and it will work. – agfAug 11 '11 at 12:30
2
You don't need __hash__ just for this code to work, but it's a good idea to implement it so that your objects can be used effectively in dicts and sets. – Ned BatchelderAug 11 '11 at 12:38
[2,2,1,1,1,2,2]? Should it be[[2,2],[1,1,1],[2,2]]or[[2,2,2,2],[1,1,1]]? – MichaĆ Bentkowski Aug 11 '11 at 12:11