Sudoku Solver

Simple Javascript Sudoku Solver programmed by Philipp Schreitmueller

Check out the source at GitHub

Rules

Fill in numbers 1 to 9 in a way that the same single number

  • may not appear twice in a line.
  • may not appear twice in a row.
  • may not appear twice in any of the 9 3x3 subregions.

The sudoku contains no errors.

Execution time ms.

Solve it! Clear