Metadata-Version: 2.1
Name: rsr45-sudoku_solver
Version: 0.1.2
Summary: A command-line Sudoku solver using a backtracking algorithm.
Home-page: https://github.com/raunaq-rai/Sudoku-Solver-RR.git
Author: Raunaq Rai
Author-email: rsr45@cam.ac.uk
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE

# Sudoku Solver

A command-line Sudoku solver that uses a backtracking algorithm to solve Sudoku puzzles. The project is designed with best practices for code readability, modularity, and testability, and includes containerization for easy portability.

## Features
- Solves incomplete Sudoku puzzles using a backtracking algorithm.
- Accepts Sudoku puzzles in a simple, readable format.
- Prints the solved puzzle in a clear format or indicates if the puzzle is unsolvable.
- Structured project with unit tests, documentation, and containerization for reproducibility.

## Installation

**Clone the Repository**
   ```bash
   git clone https://github.com/yourusername/sudoku-solver.git
   cd sudoku-solver


