What I want to achieve is to initialize a pair of a vector with a certain length and a certain initialization number
I know that a vector can be initialized with the same elements:
std::vector v(length, number);
and a pair:
std::pair<int> p(number, number);
so combining those two together I thought of:
std::pair<std::vector<int>, std::vector<int>> pv((length, number),(length, number));
Unfortunately this doesn't work