Demo suduko solver
Using:
AWS Lambda
...to invoke python class that implements recursive solver
Front end managed by AWS API Gateway
Suduko grid (CSV text for suduko grid)
0, 9, 0, 0, 0, 0, 8, 5, 3 0, 0, 0, 8, 0, 0, 0, 0, 4 0, 0, 8, 2, 0, 3, 0, 6, 9 5, 7, 4, 0, 0, 2, 0, 0, 0 0, 0, 0, 0, 0, 0, 0, 0, 0 0, 0, 0, 9, 0, 0, 6, 3, 7 9, 4, 0, 1, 0, 8, 5, 0, 0 7, 0, 0, 0, 0, 6, 0, 0, 0 6, 8, 2, 0, 0, 0, 0, 9, 0
click here to request solution...
Solution...