This is a simple game of Sudoku that is build using the functional programming language called Haskell. It uses simple IO() and functions to run the game in the terminal.
Must have the ghc command in order to build the executable.
./buildsudoku
This will compile the source code and generate an executable that can be used to run the program.
./Sudoku
- Loading a Sudoku board from a .txt file (the file must be in the same format as the examples given above).
- Making moves
- Saving the board in .txt file (same format as provided above), throws an error if the format is incorrect.
- Undoing and Redoing a move
- Quiting the game
- Solver using backtracking
- Hint for the next move (if possible)
- Displaying the board in the terminal
Start Screen
Making a move