An open API service indexing awesome lists of open source software.

https://github.com/sjanel/sudoku-solver

Simple, memory-friendly sudoku solver
https://github.com/sjanel/sudoku-solver

cpp performance sudoku

Last synced: over 1 year ago
JSON representation

Simple, memory-friendly sudoku solver

Awesome Lists containing this project

README

          

# 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
```