Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arshitarora/sudoku-clueless
Initiated a beginner-friendly Sudoku Game where user can also create their own game. Programmed using an algorithmic technique called backtracking.
https://github.com/arshitarora/sudoku-clueless
Last synced: 24 days ago
JSON representation
Initiated a beginner-friendly Sudoku Game where user can also create their own game. Programmed using an algorithmic technique called backtracking.
- Host: GitHub
- URL: https://github.com/arshitarora/sudoku-clueless
- Owner: ArshitArora
- License: apache-2.0
- Created: 2023-07-17T09:31:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-17T09:36:52.000Z (over 1 year ago)
- Last Synced: 2024-09-18T10:49:19.324Z (4 months ago)
- Language: Jupyter Notebook
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CLUELESS-SUDOKU
Initiated a beginner-friendly Sudoku Game where user can also create their own game.
Programmed using an algorithmic technique called backtracking.****How to play Sudoku
->The enormous popularity of sudoku across the world is due to a couple of simple facts:
1)Sudoku rules are easy to learn.
2)Sudoku puzzles vary in difficulty from simple to devious.
3)Puzzles have a unique solution that can be arrived at using pure logic. No guessing is required.
4)Sudoku is not a math game, but is rather about identifying logical patterns.
5)Complex strategies must be utilized in order to solve the hardest puzzles.
****Rules for Clueless Sudoku Game For by 9x9:-
1)We need to fill in a 9x9 grid with digits so that each column, row, and 3x3 section contain the numbers between 1 to 9.
2)A digit is correct when:
->Each row contains NOT more than one of the same number from 1 to 9
->Each column contains NOT more than one of the same number from 1 to 9
->Each 3x3 grid contains NOT more than one of the same number from 1 to 93)The easiest way to begin is to choose a number and try to fill in all the places in the puzzle where it must appear, according to the Sudoku rules.
4)When you finish dealing with the first number, choose another number.
5)Repeat these steps for all the numbers from 1 through 9.
****As far for the beginners who are not familiar with the game can try playing 4x4 to know about the game are:-
1)We need to fill in a 4x4 grid with digits so that each column, row, and 2x2 section contain the numbers between 1 to 4.
2)A digit is correct when:
->Each row contains NOT more than one of the same number from 1 to 4
->Each column contains NOT more than one of the same number from 1 to 4
->Each 2x2 grid contains NOT more than one of the same number from 1 to 43)The easiest way to begin is to choose a number and try to fill in all the places in the puzzle where it must appear, according to the Sudoku rules.
4)When you finish dealing with the first number, choose another number.
5)Repeat these steps for all the numbers from 1 through 4.