Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Need help with homework: sudoku in Java?
Hi.
I have a Java homework, where I have different steps to create a Sudoku.
It starts with:
public class Sudoku extends Thread{
int thegrid[][];
int n;
int theplace=0;
int thecomplexity=0;
int[][] tableaufinal;
}
Now I am stuck, and I have to implement the "initilization" function, which would initializes the following attributes: thegrid, theplace and thecomplexity.
public Sudoku(int n){
this.n=n;
lagrille=new int[n][n];
initialisation ();
}
So, as I said, I am stuck there. Please help !!