Sudoku Solver - in a flash
Sudoku Rules
Populate the Sudoku board with numbers 1-9, and make sure no number may occur more than once within each row, column and group. (A group is a collection of 3x3 fields within a border).
How does it work?
This is a simple javascript function to via 'brute force' solve any Sudoku.
I.e. the javascript function knows the rules of Sudoku, and systematically tries all possible combinations until a solution is found.
All calculations are running on your machine locally within your browser, and on a typical modern computer a Sudoku is normally solved in less than one second.