File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ A C++17-compatible header that provides useful functions which help with the sol
1818
1919* Simply download the ` src/sudoku_suite.h ` file and move it to your project's directory.
2020* Include the header file, as shown below in the examples, and use the functions you need!
21+ * ** NOTE:** The code is incompatible with pre-C++17 versions. While compiling, you'll have to compile with the ` --std=c++17 ` flag.
22+ * For example; when using the clang compiler, the compile command would be ` c++ --std=c++17 /path/to/file.cpp `
2123
2224## Documentation
2325
@@ -35,6 +37,8 @@ There are **three functions** that Sudoku-Suite provides the developer, along wi
3537
3638## Examples
3739
40+ ** NOTE:** The following examples are also present in the repository in the ` samples/ ` directory.
41+
3842* [ Solving and validating a Sudoku puzzle] ( #solving-and-validating-sudoku-puzzle )
3943* [ Generating a Sudoku puzzle] ( #generating-a-sudoku-puzzle )
4044* [ Initialising and reusing Grid objects] ( #initialising-and-reusing-grid-objects )
You can’t perform that action at this time.
0 commit comments