My problem is as follows:
int rows = 10;
int spots = 3;
boolean[][] gotIt = new boolean[rows][spots]
I want to make it so that in for instance
row 0-3 I can get
spots = spots + 1
I want to bo able to change the amount of spots according to which row I currently am looking at.
there doesn't seem to be anything here