Now, in this particular one, I'm attempting to make a two-dimensional container that stores vectors. Of course, I wanted both dimensions to be dynamic at first, but once convinced that even attempting to do a 2D vector was nearly impossible or required a heap of used memory via the resize() function, I went with an array of vectors.
Now, the problem comes; I made the array of pointers to vectors (only way it could be done, apparently, since I can't make up variable names on the spot using concatenation + variables) just fine. However, I want to return this same array of pointers. Unfortunately, vector<type>[] as a return type didn't exactly work. Any suggestions?