Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            Console.WriteLine("Welcome To Sudoku Solver!");

            var ioHandler = new IOHandler();
            var th = new SudokuTestHarness();

            int[,] thePuzzle = th.GetSudokuTestValuesExtreme();
            ioHandler.SetSudokuValues(thePuzzle);

            Console.WriteLine("Here is the Puzzle");

            ioHandler.PrintPuzzle();
            Console.WriteLine();
            Console.WriteLine("now solved for ruthie");

            if(!ioHandler.SolvePuzzle())
            {
                Console.WriteLine("Soz...couldn't solve the puzzle");
            } else {

            ioHandler.PrintPuzzle();
            }

            Console.WriteLine();

            Console.Write("Press any key to continue . . . ");
            Console.ReadKey(true);
        }
Ejemplo n.º 2
0
		void Button1Click(object sender, EventArgs e)
		{
			IOHandler sIOHandler = new IOHandler();
			
			sIOHandler.SetSudokuValues(GetData());
			sIOHandler.SolvePuzzle();
			SetData(sIOHandler.GetSudokuValues());
		}