For instance say,
list = {{1, 2}, {3, 1}, {2, 1}, {2, 1}, {1, 1}}
I would like it to instead print
{{1, 2}, {3, 1}, {2, 1},{ {1, 1}}
I have tried DeleteDuplicates[list]
and that worked to no avail. Any ideas? A loop
and comparing each element would work but would take to much memory as the number of sublists
I have are based on (high) factorial.
This is what I get (Mathematica 8):