From 92ee867f40abd6591d687b61debaaea06c563ab8 Mon Sep 17 00:00:00 2001 From: Lathifahdhiya Date: Wed, 13 Oct 2021 00:50:33 +0700 Subject: [PATCH] Sudoku Generator --- Projects/3-Advanced/Sudoku-Generator.md | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Projects/3-Advanced/Sudoku-Generator.md diff --git a/Projects/3-Advanced/Sudoku-Generator.md b/Projects/3-Advanced/Sudoku-Generator.md new file mode 100644 index 00000000..a5c7bf0e --- /dev/null +++ b/Projects/3-Advanced/Sudoku-Generator.md @@ -0,0 +1,29 @@ +# Sudoku Generator + +**Tier:** 3-Advanced + +A simple application for generating sudoku game board using Backtracking Algorithm. + +## User Stories + +- [ ] User inputs an unsolved sudoku game and click the `solve` button to generate a complete sudoku board. + +## Bonus Features + +- [ ] User can generate a complete sudoku board. +- [ ] User can generate a sudoku game based on difficulty (easy, intermediate, advanced). This means after a complete sudoku game board being generated, the application will make empty spaces on the board depending on the difficulty. + +## Useful links and resources + +- [Backtracking Algorithms by GeeksForGeeks](https://www.geeksforgeeks.org/backtracking-algorithms/) +- [Sudoku Solver Tutorial by TechWithTim](https://www.youtube.com/watch?v=eqUwSA0xI-s&t=547s) +- [Sudoku | Backtracking by GeeksForGeeks](https://www.geeksforgeeks.org/sudoku-backtracking-7/) +- [Sudoku Algorithm: Generates a Valid Sudoku in 0.018 seconds by Code Project](https://www.codeproject.com/Articles/23206/Sudoku-Algorithm-Generates-a-Valid-Sudoku-in-0-018) +- [Sudoku Generator Algorithm and implementation in Python by 101computing](https://www.101computing.net/sudoku-generator-algorithm/) +- [Program for Sudoku Generator by GeeksForGeeks](https://www.geeksforgeeks.org/program-sudoku-generator/) + +## Example projects + +- [sudokuJS by pocketjoso](https://github.com/pocketjoso/sudokuJS) +- [sudoku.js by robatron](https://github.com/robatron/sudoku.js) +- [Sudoku-Generator by vaithak](https://github.com/vaithak/Sudoku-Generator)