This repository contains a fully functional Sudoku game implemented in JavaScript. The game includes a user interface for playing Sudoku, viewing the rules of the game, and exploring an algorithm that solves Sudoku puzzles. The project is structured into several pages to enhance the user experience.
The game is static, and deployed here: https://sudokugame-ti0kv.kinsta.page/index.html
- Play Sudoku: Users can play a game of Sudoku, with a clean and intuitive interface.
- Sudoku Rules: A detailed explanation of the rules of Sudoku is provided.
- Algorithm Explanation: An in-depth explanation of the custom algorithm used to solve Sudoku puzzles.
- Automated Sudoku Solver: Users can generate a Sudoku board and see it solved by the algorithm in real-time.
To run the Sudoku game locally, follow these steps: 1.
git clone https://github.com/Jovan11111/SudokuGame
- Open index.html
The algorithm used to solve Sudoku puzzles in this project is a custom implementation designed to efficiently find solutions to any valid Sudoku board. Detailed explanations and pseudocode are provided on the "About" page within the application.
Contributions are welcome! If you have any improvements or suggestions, please submit a pull request. For major changes, please open an issue first to discuss what you would like to change. There is stuff I want to add, like win detection, modals that pop up when a player wins, and a button for removing a placed number, so feel free to help me
Thank you for checking my game out