An open API service indexing awesome lists of open source software.

https://github.com/surajkareppagol/sudoku

🔢 Classic Sudoku Game Implemented In C.
https://github.com/surajkareppagol/sudoku

cprogramming sudoku

Last synced: 11 months ago
JSON representation

🔢 Classic Sudoku Game Implemented In C.

Awesome Lists containing this project

README

          

# Sudoku

This is the `sudoku` game created in `C` language.

## How to play

There are 9 blocks and each block has 9 cells.

![Game board](https://raw.githubusercontent.com/surajkareppagol/Assets/main/29%20-%20Sudoku/gameBoard.png)

Enter the input in this format,

`Enter the block, cell number and the value 👇,`

`> 1 1 1`

Here the block number is `1`, cell number is `1` and the value to be inserted is also `1`.

## Sample GamePlay

![Generated game board](https://raw.githubusercontent.com/surajkareppagol/Assets/main/29%20-%20Sudoku/generatedBoard.png)

`Enter the block, cell number and the value 👇,`

`> 2 1 2`

Here the block number is **_2_**, cell number is **_1_** and the value to be inserted is also **_2_**.

![Game play](https://raw.githubusercontent.com/surajkareppagol/Assets/main/29%20-%20Sudoku/gamePlay.png)

To exit the game 🗙,

`Enter the block, cell number and the value 👇,`

`> 0 0 0`

![Exit game](https://raw.githubusercontent.com/surajkareppagol/Assets/main/29%20-%20Sudoku/exitGame.png)