This is an interactive terminal-based sudoku game that has the ability to solve itself as well.
Here are the steps:
- Install cmake.
- At the root directory, create a build folder
mkdir build
cd build
- In the build folder, run cmake
cmake ..
- This should create makefiles for the project based on your environment. Depending on your environment, run your make command (make or mingw32-make)
make
mingw32-make
- Technically, you could build using CLion, Visual Studio or whatever, but when you run, make sure to run from a terminal, not the goofy CLion output screen.
- This will create an executable file, probably named
Sudoko_Project
. Run it using
# Windows
.\Sudoko_Project.exe
# Linux / MacOS
./Sudoko_Project