I have a list of list:
List<List<Integer>> myList = new ArrayList<>();
What would be the best way to remove the duplicated list in myList?
For example, in the following list of list:
[[-1,0,1],[-1,-1,2],[-1,0,1]]
I would like to reduce it to:
[[-1,0,1],[-1,-1,2]]
Thanks!
>` to `Set
– Nikolas Charalambidis Oct 02 '17 at 18:50>`