A simple command-line application for solving Sudokus.
The basis of this application was created as part of the coding-board.de coding challenge.
The actual code submitted as my solution for the challenge can be found here.
Just download the latest .jar
file from the releases page
of this Repository and execute it with the following command:
java -jar SudokuSolver.jar
In case you would like to mess around with the source code, just download an archive file of this project,
unpack it and open the project's code in your favorite text editor or IDE.
You can of course also use the git clone
command:
git clone https://github.com/jr-cologne/SudokuSolver.git
In order to solve a Sudoku, you have to provide a text file (.txt
) including the Sudoku as the first argument.
Running the SudokuSolver basically looks like this:
java -jar SudokuSolver.jar input.txt
Feel free to contribute to this project! Any kind of help and support is highly appreciated.
This project is licensed under the MIT License.