Exemplo n.º 1
0
 public Game createAndStart() {
   int[][] solution = SudokuGenerator.createSolution();
   int[][] initialBoardState = SudokuGenerator.createGame(NUMBER_OF_BLANK_FIELDS, solution);
   game = new Game(solution, initialBoardState);
   return game;
 }