I'm having a problem with the C++ extension of VScode. Whenever I define a matrix consisting of vectors like vector<vector<int> >
and use the auto formatter, it changes the code to vector<vector<int>>
which results in a compiler error.
Is there any solution to this?