Hi there.
I have found how to declare a two dimensional vector like below:
vector < vector < vector<int> > > myvector;
My question is, how do I declare a three dimensional vector? Is it as per below? I just thought there may be a standard for this. Thanks
vector < vector < vector<int> > < vector<int> > > myvector;