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
- Host: GitHub
- URL: https://github.com/antonioberna/sudoku-solver
- Owner: AntonioBerna
- License: gpl-3.0
- Created: 2024-01-23T20:10:31.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-07T23:57:27.000Z (over 1 year ago)
- Last Synced: 2025-02-08T00:26:22.079Z (over 1 year ago)
- Topics: benchmark, c, docker, hyperfine, sudoku-solver
- Language: C
- Homepage: https://antonioberna.github.io/sudoku-solver/
- Size: 433 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sudoku-solver
[](https://app.codacy.com/gh/AntonioBerna/sudoku-solver/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)





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.