Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# 🔢 Sudoku Solver & Game 🎮

**Sudoku Solver** is a web-based interactive Sudoku game that also features an AI-powered solver. Users can play Sudoku puzzles, get hints, or solve the full grid instantly.

## 🧩 Features

- 🎮 Playable 9x9 Sudoku grid
- ⚙️ Auto-solve feature using Backtracking Algorithm
- 🧠 Hint system (solve one cell at a time)
- 🧼 Reset/Clear board functionality
- 🌙 Light & Dark theme toggle (optional)
- 📱 Fully responsive UI

## 🚀 Live Demo

[Click Here to Try Sudoku Solver](https://your-deployed-link.com)

## 🛠️ Tech Stack

- **Frontend**: HTML, CSS, JavaScript
*(or React / Next.js if you're using it)*
- **Logic**: Backtracking Algorithm
- **Styling**: Tailwind CSS / Bootstrap / Custom CSS

## 📦 How to Run Locally

```bash
# Clone the repository
git clone https://github.com/your-username/sudoku-solver.git

# Navigate to the project folder
cd sudoku-solver

# If using plain HTML/CSS/JS:
Just open index.html in your browser

# If using React:
npm install
npm run dev