public SudokuGenerator(Random rnd)
 {
     this.rnd = rnd;
     solver   = new SudokuSolver(rnd);
 }
Example #2
0
 public SudokuBuilder(IRandom rnd)
 {
     this.rnd = rnd.RND;
     solver   = new SudokuSolver(rnd.RND);
 }