I am trying to store array of vectors in map but i don’t understand how it is possible
suppose if i want to get value of Key 0 - it should give out array of vectors
please let me know if there are any other solutions

I am trying to store array of vectors in map but i don’t understand how it is possible
suppose if i want to get value of Key 0 - it should give out array of vectors
please let me know if there are any other solutions

You have to do this as a structure. Make the first structure an array of vectors and call it something like ‘Vector Array’. Then make a structure which is an array of Vector Array.
EDIT: You could at the point make a map of vector arrays using an integer, but it would be a lot easier to make an array of vector arrays ![]()
Can you please expand it