A simple browser-based Sudoku solver built with React and TypeScript.
Enter your starting digits and solve puzzles using a basic backtracking-style search over row permutations.
- Start the dev server and open the shown URL in a browser
- Enter your starting digits into the cells of the input grid
- Click solve to compute the solution to the given Sudoku
- Click clear to reset and input a new puzzle
- Node.js 20+
- npm
Install dependencies:
npm install
Build and Run:
npm run build
npm run preview
Alternatively, run dev server:
npm run dev