Sudoku Solver A class written in C++17 for solving sudoku table using backtracking. How to run example? You can use bazel: $ bazel run :sudoku_solver_example or g++: $ g++ sudoku_solver_example.cc -o ./a.out && ./a.out How to run tests? You can use bazel: $ bazel test test:test_sudoku