Provide a gameboard with missing values denoted with 0, SodokuSolver will find complete game boards for us
intX=3,Y=3;int[][]presetBoard={newint[]{4,0,0,2,0,6,1,7,0},newint[]{0,9,0,5,0,3,0,0,0},newint[]{0,5,0,0,7,0,6,9,0},newint[]{0,0,0,7,3,0,0,1,0},newint[]{0,0,0,0,5,0,2,0,9},newint[]{0,0,0,0,4,1,0,0,6},newint[]{0,4,5,0,6,0,0,0,8},newint[]{0,7,8,4,0,0,5,0,0},newint[]{0,0,6,3,0,5,0,0,0}};varsolver=newSudokuSolver(X,Y,Processor);solver.InitializeBoard(presetBoard);solver.Solve();boolProcessor(int[][]contents){// We have the complete goard board stored in agument contents here// return true if we want to find all solutions, otherwise it will stop finding after getting the first onereturntrue;}