This monorepo contains:
frontend: ReactJS + TypeScript web client for Sudoku input and visualizationbackend: Java (Spring Boot) REST API for solving Sudoku puzzles
- Navigate to
frontendfolder - Install dependencies:
npm install - Start development server:
npm start
- Navigate to
backendfolder - Build and run with your preferred Java tool (Maven/Gradle)
- Example (Maven):
mvn spring-boot:run
- Example (Maven):
- The frontend allows users to input Sudoku puzzles and sends them to the backend for solving.
- The backend exposes a REST API endpoint to receive a puzzle and return the solution.
Replace placeholder code with your implementation as needed.