Hello
I'd like to have a list of ints inside my vector..
I tried to do the following:
private static Vector<List<int>> getCombMatrix() {
But it will give me error: Syntax error on token "int", Dimensions expected after this token
However, this works okay:
private static Vector<int[]> getCombMatrix() {
What am I doing wrong?
Thanks for help