How to create an ordered map of tuples whose size is known after reading input in C++?

77 Views Asked by At

I am trying to create an ordered map of tuples of ints whose size I know after reading input.

Something like:

map<tuple<int, int, ...>>

How do I do something like this in case I have n ints in the tuple?

Is it possible?

0

There are 0 best solutions below