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 所描述的策略。
應重複應用策略,直到解決難題為止。
唯一選擇規則
單一可能性規則
僅平方法則
三取二規則
子組排除規則
暴力破解