Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 414 Bytes

File metadata and controls

25 lines (19 loc) · 414 Bytes

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