Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 596 Bytes

File metadata and controls

22 lines (17 loc) · 596 Bytes

sudoku-java

A java version of my sudoku solver program. It can solve 1000 puzzles in 35 ms.

The current setup will simply solve 1000 preloaded puzzles and report back with the speed.

usage

Download the .jar file from the lastest release and run it with

java -jar sudoku-2.1.jar

If you want to have it solve your own puzzles, you can run it with

java -jar sudoku-2.1.jar <filename>

Note that the jar and the csv file with your puzzles must be in the same directory.

If you are a more advanced user, you can clone the repo and compile from source with

mvn package