Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 233 Bytes

README.md

File metadata and controls

6 lines (6 loc) · 233 Bytes

sudoku-solver

Simple sudoku solver, very fast to find the first solutions, and memory friendly. Compile with a C++20 compiler (I use std::popcount), for instance with:

g++ -std=c++20 -Wall -Wextra -Wpedantic -O3 main.cpp