Skip to content

shaggysa/sudoku-cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku-C++

A c++ program to solve sudoku puzzles very quickly. To use, compile the program into an executable with

cmake .
make

and run it with

./sudoku <puzzle file>

It should be a CSV file in the format "puzzle,solution".

For example, to solve the puzzles in the included puzzles.csv file, run

./sudoku puzzles.csv

Note that the time elapsed in the async speedtest is less than the total solving time by a significant amount. The time elapsed represents the time you (the user) spent waiting on the solver. The total solving time is the total time spent by the CPU across all threads.

About

A c++ take on my sudoku solving program.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published