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

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

Sudoku Solver using Bitwise Operators in C
https://github.com/antonioberna/sudoku-solver

benchmark c docker hyperfine sudoku-solver

Last synced: 29 days ago
JSON representation

Sudoku Solver using Bitwise Operators in C

Awesome Lists containing this project

README

          

# sudoku-solver

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/1c00f9216d36419b86f0584dd6dafbc4)](https://app.codacy.com/gh/AntonioBerna/sudoku-solver/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
![GitHub repo size](https://img.shields.io/github/repo-size/AntonioBerna/sudoku-solver)
![GitHub License](https://img.shields.io/github/license/AntonioBerna/sudoku-solver)
![Docker Image Size](https://img.shields.io/docker/image-size/antonioberna/sudoku-solver)
![Website](https://img.shields.io/website?url=https%3A%2F%2Fantonioberna.github.io%2Fsudoku-solver%2F)
![GitHub Created At](https://img.shields.io/github/created-at/antonioberna/sudoku-solver)

This repository contains a C program that solves Sudoku puzzles using bitmasking + backtracking and dancing links techniques. The program is designed to efficiently handle Sudoku problems by representing the possible numbers for each cell as bitmasks, allowing for quick checks and updates during the solving process.

Please visit [https://antonioberna.github.io/sudoku-solver](https://antonioberna.github.io/sudoku-solver) for more information.