Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anthonyodum/sudoku
https://github.com/anthonyodum/sudoku
game playable-sudoku sudoku-generator
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/anthonyodum/sudoku
- Owner: AnthonyOdum
- Created: 2019-12-27T15:36:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-27T15:55:34.000Z (about 5 years ago)
- Last Synced: 2024-10-28T14:53:46.564Z (2 months ago)
- Topics: game, playable-sudoku, sudoku-generator
- Language: Java
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku
How To Play:
In Sudoku the player is given a 9x9 grid with some cells filled, while other cells are empty (Marked by 0).
The goal of the game is to fill each row, column and 3x3 subgrid with the numbers 1 - 9. However, these numbers can only
occur once! The player will enter the coordinates of the cell that they would like to try and fill, as well as the guess
they want to fill it with.Example:
1 2 3 4 5 6 7 8 9
4 5 6
7 8 9
2
3
6
8
9
5As you can see in the above example, there is only one occurence of each number in the row, column and 3x3 subgrid.
This will need to be done for the entire 9x9 board.You can make 5 mistakes and the time is unlimited. You will be prompted as to whether your guess was correct or incorrect.
To Run:
- With IDE
> Download the files, compile and run as normal
- In Command Line
> Download the files and open a command prompt
> cd path/to/Sudoku
> Type "javac SudokuDriver.java"
> Type "java SudokuDriver"
> Enjoy!