can anyone tell me where im going wrong? this doesnt seem to work. Im trying to specify in the parameter an i and j which locates the cell. And returns the posible values in a 9 x 9 sudoku grid. what this does it that the first array i.e a[0]= true if the cell is empty and false if its being played or occupied. the rest of the array consists of vlaues which are possible values that can be inserted into that i and j cell. therefore a possible value is 4 then it will return a[4]= true and the rest of the boolean array would be possible. can anyone tel me where im goign wrong? is the while loop incorrect?
public boolean[] getPossible( int i, int j)
{
final int booArraySize = 10;
boolean[] possibleArray = new boolean[booArraySize];
int zero = 0;
if ( game[i][j] == 0)
{
for( int b=1; b < possibleArray.length; b++)
{
possibleArray[b] = true;
}
int row=i;
int col= 0;
int[] copyy = new int[GRID_SIZE];
for( int m = 0; m < copyy.length; m++)
{
copyy[m] = 1;
}
while ( (copyy[0] < 10) && (copyy[0] >0))
{
for ( int q= col+1; q < game.length; q++)
{
if( copyy[0] == game[row][q])
{
possibleArray[q] = false;
}
else
{
possibleArray[q] = possibleArray[q];
}
}
copyy[0] = copyy[0] + 1;
}
possibleArray[0]= true;
}
return possibleArray;
}
copyy[0]and never any other elements of that array. The second thing is thatpossibleArray[q]gets set to true whenever a cell in the same column doesn't containcopyy[0]so basically, unless every cell in that column is 4, 4 will be possible. – trutheality May 29 '11 at 2:37gameis a 2D array of the sudoku board containing the numbers in the cells, 0 meaning blank. – trutheality May 29 '11 at 2:39