diff --git a/src/sudoku_generator.h b/src/sudoku_generator.h index 4b1d1aa..8acb734 100644 --- a/src/sudoku_generator.h +++ b/src/sudoku_generator.h @@ -1,7 +1,6 @@ /* Copyright 2023 Arjun Aravind */ #ifndef SRC_SUDOKU_GENERATOR_H_ #define SRC_SUDOKU_GENERATOR_H_ -#endif // SRC_SUDOKU_GENERATOR_H_ #include #include @@ -56,3 +55,5 @@ Grid generate_puzzle() { } } // namespace sudoku + +#endif // SRC_SUDOKU_GENERATOR_H_ diff --git a/src/sudoku_solver.h b/src/sudoku_solver.h index 7c6740e..5212705 100644 --- a/src/sudoku_solver.h +++ b/src/sudoku_solver.h @@ -1,7 +1,6 @@ /* Copyright 2023 Arjun Aravind */ #ifndef SRC_SUDOKU_SOLVER_H_ #define SRC_SUDOKU_SOLVER_H_ -#endif // SRC_SUDOKU_SOLVER_H_ #include @@ -48,3 +47,5 @@ void solve(Grid *grid) { } } // namespace sudoku + +#endif // SRC_SUDOKU_SOLVER_H_ diff --git a/src/sudoku_validator.h b/src/sudoku_validator.h index 034bc2e..3411e91 100644 --- a/src/sudoku_validator.h +++ b/src/sudoku_validator.h @@ -1,7 +1,6 @@ /* Copyright 2023 Arjun Aravind */ #ifndef SRC_SUDOKU_VALIDATOR_H_ #define SRC_SUDOKU_VALIDATOR_H_ -#endif // SRC_SUDOKU_VALIDATOR_H_ #include @@ -27,3 +26,5 @@ bool is_valid_solution( } } // namespace sudoku + +#endif // SRC_SUDOKU_VALIDATOR_H_