We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8506d6 commit 56a35edCopy full SHA for 56a35ed
1 file changed
sudoku-solver/main.cpp
@@ -19,7 +19,8 @@ DFS Sudoku solver CLI.
19
20
namespace {
21
22
-struct SudokuState {
+struct SudokuState
23
+{
24
std::array<int, 81> cells{};
25
std::array<uint16_t, 9> row_mask{};
26
std::array<uint16_t, 9> col_mask{};
0 commit comments