Skip to content

Commit 56a35ed

Browse files
Format fix
1 parent c8506d6 commit 56a35ed

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sudoku-solver/main.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ DFS Sudoku solver CLI.
1919

2020
namespace {
2121

22-
struct SudokuState {
22+
struct SudokuState
23+
{
2324
std::array<int, 81> cells{};
2425
std::array<uint16_t, 9> row_mask{};
2526
std::array<uint16_t, 9> col_mask{};

0 commit comments

Comments
 (0)