feat: Implement Sudoku game with grid generation, validation, and solving features

- Added Sudoku grid generation with varying difficulty levels (easy, medium, hard).
- Implemented Sudoku solving functionality.
- Created a user interface for inputting and checking Sudoku solutions.
- Added validation for user inputs and error handling for invalid grids.
- Introduced a Docker configuration for easy deployment.
This commit is contained in:
Puechberty Arthur
2026-03-30 23:32:32 +02:00
parent 9db2c2483c
commit 62c898c208
6 changed files with 750 additions and 414 deletions
+10
View File
@@ -0,0 +1,10 @@
services:
sudoku-app:
image: node:20-alpine
working_dir: /app
volumes:
- ./:/app
command: sh -c "npm install && npm run build && npm start"
ports:
- "3005:3000"
restart: unless-stopped