static void Main(string[] args) { SudokuPuzzle sp = new SudokuPuzzle(); //sp.Populate(getSolution(true)); //sp.Populate(GetPuzzle(10)); sp = new SudokuPuzzle(SudokuPuzzle.GetPuzzle(@".\Boards\GEOboard.csv")); Console.WriteLine(sp.ToString()); //WritePuzzle(@"K:\MyStuff\Documents\Personal\Sudoku\Output.txt", sp, false); WritePuzzle(@".\Output.html", sp); Console.ReadLine(); }