Menu

Tree [r14] /
 History

HTTPS access


File Date Author Commit
 .settings 2011-05-12 mikejyg1 [r1] jisudokusolver 1.0.0.
 bin 2011-05-12 mikejyg1 [r1] jisudokusolver 1.0.0.
 sample_puzzles 2011-06-06 mikejyg1 [r13] version 2.4.0
 sample_scripts 2011-05-31 mikejyg1 [r12] version 2.3.0
 src 2011-06-06 mikejyg1 [r14] keep pattern cell list in sync with board history.
 test 2011-05-18 mikejyg1 [r10] removed obsolete files.
 .classpath 2011-05-12 mikejyg1 [r2] version 1.1.0.
 .project 2011-05-12 mikejyg1 [r1] jisudokusolver 1.0.0.
 build.xml 2011-05-31 mikejyg1 [r12] version 2.3.0
 jisudokusolver.bat 2011-05-23 mikejyg1 [r11] version 2.2.0
 jisudokusolver.jar 2011-06-06 mikejyg1 [r14] keep pattern cell list in sync with board history.
 log4j.properties 2011-05-12 mikejyg1 [r2] version 1.1.0.
 readme.txt 2011-05-23 mikejyg1 [r11] version 2.2.0
 startGUI.bat 2011-05-23 mikejyg1 [r11] version 2.2.0
 todo.txt 2011-05-31 mikejyg1 [r12] version 2.3.0
 versions.txt 2011-06-06 mikejyg1 [r13] version 2.4.0

Read Me

jiSudokuSolver is a masterSudoku program.
It solves any puzzle, good or bad, even an empty one (no cell known), usually in an instant, and it shows you how, step by step.
It also let you play puzzles with assist, generates, fixes, tests, reduces... 

Start GUI:
double click or run jisudokusolver.bat.

copy and paste in GUI:
You can copy and paste puzzles between tabs, and to and from other programs in text form.

sample use cases (CLI/command line interface):

Solve a puzzle: just give it the puzzle.

Fix a puzzle: if a puzzle has multiple solutions, it will provide set of values to make it unique solution.

Generate a puzzle: it can generate a random one, one with specified difficulty, or one with a specified ID.

Reduce a puzzle: try to remove unnecessary values from the puzzle (makes it harder).

Puzzle Design tool: Design the puzzle the way you want; ask the program to solve the puzzle, and it will tell you whether there are too many or too few values set. Once the puzzle is good, ask the program to reduce it to make it harder (without changing the solution). 

examples:

See sample_scripts/ for usage examples. 

----

jiSudokuSolver is the Java version of the c++ iSudokuSolver. The c++ iSudokuSolver is no longer being maintained.

It is a command line program that reads in one or more (in batch mode) puzzles.

Use -h for help.

See the sample_scripts directory for usage samples.

The format of puzzle this program expects are numbers separated by whitespace characters (space, tab, end-of-line...).

The number of whitespace characters do not matter.

The order is from left to right, from top to bottom.
 
If a cell is known, it should be a non-zero number, otherwise it should be 0. 

---- from the c++ iSudokuSolver

iSudokuSolver is an intelligent Sudoku puzzle solver

It is intlligent, because it uses several logical deduction methods, just like a person would use, in addition to a DFS algorithm to solve Sudoku puzzles. 

The solver uses 5 logical deduction methods. It will try to exhaust all available logical deductions, before resorting to brute force search. If the "--showprogress" switch is used, it will show which method it used for each determination, and at the end, it will give a "level" figure to indicate the difficulty of the puzzle.

It is written in standard c++.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.