Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bonifatius94/sudoku
Sudoku Puzzle App
https://github.com/bonifatius94/sudoku
csharp sudoku-game sudoku-generator sudoku-solver wpf-ui
Last synced: 4 days ago
JSON representation
Sudoku Puzzle App
- Host: GitHub
- URL: https://github.com/bonifatius94/sudoku
- Owner: Bonifatius94
- License: mit
- Created: 2019-09-03T17:18:39.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-23T11:28:06.000Z (almost 3 years ago)
- Last Synced: 2023-03-10T05:51:54.951Z (over 1 year ago)
- Topics: csharp, sudoku-game, sudoku-generator, sudoku-solver, wpf-ui
- Language: C#
- Homepage:
- Size: 134 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
This is a project that deals with algorithmic issues when trying to solve / generate sudoku puzzles.
Those algorithmic features are then used by a small C# WPF Desktop App for demonstration purposes.## Disclaimer
As this piece of code is quite boldly written, I'm using the opportunity to rehearse TDD and
refactoring on this codebase. So, the code should still work, but there will be some additional
testing / redesign efforts, to make this a nicer project.## Build + Test
For building the project either use the standard way of doing things with .NET + Visual Studio or
use the 'dotnet' CLI when developing on Linux. The 'dotnet' commands are already provided as Dockerfile.```sh
docker build . -t "sudoku"
docker run --name my-sudoku sudoku bash
docker cp my-sudoku:/app/out .
```## License
This software is available under the terms of the MIT license.