MCPcopy Create free account
hub / github.com/codedecks-in/LeetCode-Solutions / printGrid

Method printGrid

C++/Sudoku-Solver.cpp:92–99  ·  view source on GitHub ↗

A utility function to print grid */

Source from the content-addressed store, hash-verified

90
91 /* A utility function to print grid */
92 void printGrid(vector<vector<char>>& board)
93 {
94 for (int row = 0; row < 9; row++) {
95 for (int col = 0; col < 9; col++)
96 cout << board[row][col] << " ";
97 cout << endl;
98 }
99 }
100
101
102 void solveSudoku(vector<vector<char>>& board) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected