https://github.com/abusch/sudoku-react
A Sudoku game in React
https://github.com/abusch/sudoku-react
Last synced: 9 months ago
JSON representation
A Sudoku game in React
- Host: GitHub
- URL: https://github.com/abusch/sudoku-react
- Owner: abusch
- Created: 2021-09-21T05:18:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-17T12:22:42.000Z (over 4 years ago)
- Last Synced: 2025-09-16T13:23:36.813Z (9 months ago)
- Language: TypeScript
- Homepage: https://abusch.github.io/sudoku-react/
- Size: 2.26 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Game of Sudoku
Built with React+Redux, just for the learning experience...
You can play online [here](https://abusch.github.io/sudoku-react). To start locally, run `yarn start` in the root folder and head to `https://localhost:3000`.
## TODO
- [x] Adjust pencil marks when entering a digit
- [ ] Check if the sudoku is solved on every move (maybe?)
- [x] replace `Set` with something else for pencil marks as it apparently doesn't play well with redux
- [x] Add *check* or *verify* button instead of checking on every move
- [x] add *reset* button to start over
- [ ] finish up sudoku generator
- [x] implement Undo functionality (maybe using redux?)
- [ ] refactor/split-up CSS to be less of a mess (move to SCSS or SASS or css-modules or whatever?)
- [ ] add timer
- [x] move to TypeScript