Function to print grids of the Sudoku.
| 60 | |
| 61 | //Function to print grids of the Sudoku. |
| 62 | void printGrid (int grid[N][N]) |
| 63 | { |
| 64 | // Your code here |
| 65 | |
| 66 | for(int i=0;i<9;i++){ |
| 67 | for(int j=0;j<9;j++){ |
| 68 | cout<<grid[i][j]<<" "; |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | // { Driver Code Starts. |