sudoku solver
1.0.0
用 PHP 编写的简单数独谜题求解器。
注:该项目仍在建设中。
在项目的根目录中运行以下命令来安装数独求解器。
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)
该求解器使用的策略基于 Sudoku Dragon 所描述的策略。
应重复应用策略,直到解决难题。
唯一选择规则
单一可能性规则
仅平方法则
三取二规则
子组排除规则
暴力破解