sudoku solver
1.0.0
A simple Sudoku puzzle solver written in PHP.
NOTE: This project is still under construction.
Run the following in the root of the projec to install sudoku-solver.
composer install
Square One of the m x n values on the puzzle board
Row Horizontal M squares
Column Vertical N squares
Region An m x n subset of squares
Group M/N number of squares in a row (horizontally or vertically)
The strategies used by this solver are based on the strategies as described by Sudoku Dragon.
Strategies should be repeatedly applied until the puzzle is solved.
Only Choice Rule
Single Possibility Rule
Only Square Rule
Two out of Three Rule
Sub-group exclusion rule
Brute Force