https://github.com/rudrakshi99/sudoku_web_app
A Javascript implementation of the Sudoku game, including a backtracking algorithm solver.
https://github.com/rudrakshi99/sudoku_web_app
backtracking-algorithm css html javascript sudoku-solver
Last synced: about 2 months ago
JSON representation
A Javascript implementation of the Sudoku game, including a backtracking algorithm solver.
- Host: GitHub
- URL: https://github.com/rudrakshi99/sudoku_web_app
- Owner: rudrakshi99
- Created: 2020-09-25T15:38:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-25T17:10:46.000Z (over 4 years ago)
- Last Synced: 2025-01-22T18:53:24.153Z (4 months ago)
- Topics: backtracking-algorithm, css, html, javascript, sudoku-solver
- Language: HTML
- Homepage: https://rudrakshi99.github.io/Sudoku_Web_App/
- Size: 457 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku_Web_App 🧩🧩
Sudoku is one of the most popular puzzle games of all time. The goal of Sudoku is to fill a 9×9 grid with numbers so that each row, column and 3×3 section contain all of the digits between 1 and 9. As a logic puzzle, Sudoku is also an excellent brain game.
It is a real-life implimentation of **backtracking algorithm**.
1. Puzzle will be generate by clicking on **Get New Puzzle**.
2. Solve the sudoku by clicking on **Solve**.