If I had the following declaration of the list:
List< Integer> b = new ArrayList< Integer>();
and
List< HashSet < Integer>> c = new ArrayList< HashSet< Integer>>();
I was wondering how would I be able to add b to c?
I've tried c.add(b);
but this doesn't work.
Thanks for any help!
cholds (many) HashSets of Integers,bjust Integers