hi,
I have a structure list<list<int> > mylist;
and an int that tells me into which outer list I should insert some other value.
e.g.: int i = 3;
now, if I want to push_back something in the i-th list, how would I do this?
something like mylist[i]->push_back(100);