-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f4999e
commit 819ab4c
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Sudoku Game v1.0.0 | ||
|
||
Welcome to the Sudoku Game v1.0.0! ๐ | ||
|
||
## Introduction | ||
This is an interactive Sudoku game implemented in C++. It allows multiple players to play Sudoku on a 9x9 grid and compete for the highest score. Get ready to test your Sudoku-solving skills and have fun with your friends! | ||
|
||
## Features | ||
โจ Supports 1 to 4 players | ||
โจ Each player has 3 attempts to complete the Sudoku grid | ||
โจ Validates the correctness of the Sudoku board | ||
โจ Tracks and displays player scores | ||
โจ Determines the winner based on the highest score | ||
|
||
## Getting Started | ||
To compile and run the Sudoku game, follow these steps: | ||
|
||
1. Make sure you have a C++ compiler installed on your system. | ||
2. Clone this repository or download the source code files. | ||
3. Open a terminal or command prompt and navigate to the project directory. | ||
4. Compile the program by executing the following command: | ||
``` | ||
g++ main.cpp game.cpp users.cpp sudoku.cpp -o program | ||
``` | ||
5. Run the program by executing the following command: | ||
``` | ||
./program | ||
``` | ||
|
||
## How to Play | ||
๐ฎ Upon starting the game, enter the number of players (1-4) and provide their names. | ||
|
||
๐งฉ The Sudoku board will be displayed, and players will take turns entering numbers. | ||
|
||
๐ข Select a row (1-9) and column (1-9) to place a number in the corresponding cell. | ||
|
||
๐ก Enter a number from 1 to 9 to fill in the empty cell. | ||
|
||
โ The game will validate the move and update the player's score accordingly. | ||
|
||
โ Players have three attempts to complete the Sudoku grid correctly. | ||
|
||
๐ The game ends when all players have exhausted their attempts. | ||
|
||
๐ The winner is determined based on the highest score achieved. | ||
|
||
## About | ||
This Sudoku game was developed by Mustafa Munir and Azmeer Azhar, two passionate students from NED University's Department of Computer Science. Their goal was to create an engaging and challenging game that showcases their programming skills. | ||
|
||
๐ We hope you enjoy playing Sudoku and have a great time with your friends! If you encounter any issues or have suggestions for improvement, please feel free to reach out. | ||
|
||
## Version History | ||
- v1.0.0: Initial release | ||
|
||
## License | ||
This project is licensed under the [MIT License](LICENSE). Feel free to use, modify, and distribute the code for personal or educational purposes. | ||
|
||
๐ For more information and updates, visit the [Sudoku Game GitHub repository](https://github.com/your-username/sudoku-game). | ||
|
||
๐ Happy Sudoku gaming! ๐งฉ๐ |