Sudoku Solver
This API will return a solution to 9X9 sudoku puzzle. If the puzzle is solvable, the API will return a solved puzzle. If the puzzle is unsolvable, the API will return an error message. The input should be a json payload in the below format where 0 corresponds to blank cell. Body Input Format : { "board": [ [5,3,0,0,7,0,0,0,0], [6,0,0,1,9,5,0,0,0], [0,9,8,0,0,0,0,6,0], [8,0,0,0,6,0,0,0,3],…
Sudoku Solver endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST |
sudoku_solver /solve_sudoku |
It enables to post a sudoku 9X9 problem and return a solved puzzle. |
Sudoku Solver pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $15 / month | — |
|
| ULTRA | $25 / month | — |
|
| MEGA | $80 / month | — |
|