sudoku-solver-cpp/solver.cpp
Drew Galbraith 0e482fcf4b Add a tool to partition a large test case.
Pull out the specific cases that are currently unsolved to allow easier
iterative testing of the solver.
2023-05-04 00:38:05 -07:00

13 lines
334 B
C++

#include "solver/solver.h"
#include <iostream>
int main(int argc, char** argv) {
Solver solver(
"068700900004000071030809050300080100040005007007304092602001005000020600"
"059030028");
if (!solver.Solve()) {
std::cout << "Error! Couldn't Solve" << std::endl;
}
std::cout << solver.StateUrl() << std::endl;
}