posted 14 years ago
I need a data structure, that can hold such datas:
[[0, 92], [12, 85]]
You see, I have a list and in this list I have a list of Integers. But the sublist needs a size of 2 elements.
How can I declare such a datastructure?
Is this the best way?
One minor problem is, that I cannot fix the size of the sublist to 2.