public static void Main()
var board = new int[9, 9]
public static void SolveSudoku(int[,] board)
Console.WriteLine("Input");
Console.WriteLine("Output");
public static void WriteBoard(int[,] board)
StringBuilder sb = new StringBuilder();
sb.AppendLine("-------------------------------------");
for (int i=0; i < 9; i++)
for (int j=0; j < 9; j++)
sb.Append(board[i, j] + " | ");
sb.AppendLine("-------------------------------------");
Console.WriteLine(sb.ToString());