There is a certain multidimensional array, with ten arrays, in each array of N elements.
list<int>route; vector<list<int>>routes; route.push_back(.) routes.push_back(route) for(int start = 0 ; start = routes.size();start++) { for().. for().. } For example, in a multidimensional array, 3 arrays [1] = [10,20,30,40,1,20,14] [2] = [13,23,2,1,4] [3] = [3,2,1 5,13,2]
Task: It is necessary to output arrays using a loop and compare the elements of only the first array [10,20,30,40,1,20,14] with each other. Where to begin?