Simple sudoku solver

Programs which generate, solve, and analyze Sudoku puzzles

Simple sudoku solver

Postby daboo » Tue Nov 01, 2005 8:02 pm

Hi

I've created a Sudoku solver. I focused my work on simplicity --and design!.

The interface is Html based you sovle easily any Sudoku. I think the plus I've added to existing solver is the ability to solve just one cell. That can be useful if you just want to have a clue in your puzzle.

Url is: http://www.ask-sudoku.com

I may add more functionnality if you can think about killer feature. Just contact me. I am really open to any feedback (I'd be open to correct my spelling mistake...).

Daboo
daboo
 
Posts: 2
Joined: 31 October 2005

Postby Guest » Tue Nov 01, 2005 10:39 pm

what types of methods does it use?
or does it just crunch the numbers out?
Guest
 
Posts: 312
Joined: 25 November 2005

Postby daboo » Tue Nov 01, 2005 11:44 pm

Thanks evropej for your interest. The methods use a tree to solve the puzzle. First I list all possible solution for each cell. Then I make a decision in the best cell and continue until I get block. Then go back into the tree and explore other available solutions until finding the working one.

I've try to explain that into the Faq...
daboo
 
Posts: 2
Joined: 31 October 2005


Return to Software