MCPcopy Create free account
hub / github.com/chaharnishant11/CodeIn10DSA / printGrid

Method printGrid

Backtracking/Homework/sudokuSolver.cpp:62–71  ·  view source on GitHub ↗

Function to print grids of the Sudoku.

Source from the content-addressed store, hash-verified

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.

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected