Skip to content

Commit

Permalink
Update include guards
Browse files Browse the repository at this point in the history
  • Loading branch information
ArjArav98 committed May 23, 2023
1 parent 8db8943 commit 684421f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/sudoku_generator.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* Copyright 2023 Arjun Aravind */
#ifndef SRC_SUDOKU_GENERATOR_H_
#define SRC_SUDOKU_GENERATOR_H_
#endif // SRC_SUDOKU_GENERATOR_H_

#include<chrono>
#include<random>
Expand Down Expand Up @@ -56,3 +55,5 @@ Grid generate_puzzle() {
}

} // namespace sudoku

#endif // SRC_SUDOKU_GENERATOR_H_
3 changes: 2 additions & 1 deletion src/sudoku_solver.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* Copyright 2023 Arjun Aravind */
#ifndef SRC_SUDOKU_SOLVER_H_
#define SRC_SUDOKU_SOLVER_H_
#endif // SRC_SUDOKU_SOLVER_H_

#include<utility>

Expand Down Expand Up @@ -48,3 +47,5 @@ void solve(Grid *grid) {
}

} // namespace sudoku

#endif // SRC_SUDOKU_SOLVER_H_
3 changes: 2 additions & 1 deletion src/sudoku_validator.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* Copyright 2023 Arjun Aravind */
#ifndef SRC_SUDOKU_VALIDATOR_H_
#define SRC_SUDOKU_VALIDATOR_H_
#endif // SRC_SUDOKU_VALIDATOR_H_

#include<utility>

Expand All @@ -27,3 +26,5 @@ bool is_valid_solution(
}

} // namespace sudoku

#endif // SRC_SUDOKU_VALIDATOR_H_

0 comments on commit 684421f

Please sign in to comment.