Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 618 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 618 Bytes

DLX Sudoku Solver

This is a C++ implementation of Donald Knuth's Algorithm DLX which enumerates all solutions to an exact cover problem. It is used to solve Sudoku puzzles.

I also implemented it in JavaScript to create a simple Sudoku Solver web application.

See it in action at: https://karlhajal.github.io/DLX-Sudoku-Solver

Acknowledgements