-
Notifications
You must be signed in to change notification settings - Fork 263
Connect4 game #153
Connect4 game #153
Conversation
@@ -0,0 +1,5 @@ | |||
Before starting the game make sure to install pygame package into your local system or virtual environment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
requirements.txt file must include only this:
numpy==1.19.2
pygame==1.9.6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the requirements.txt file as per as you requested.
if board[r][col] == 0: | ||
return r | ||
|
||
# def print_board(board): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this commented code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commented code has been removed from the source code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://screenrec.com/share/A6OIFtuWSr
- Please change this behavior, once the column is full, the color still changes, leading to a wrong behaviour!
Please look into the matter!
@all-contributors please add @SuvamPrasd for code |
I've put up a pull request to add @SuvamPrasd! 🎉 |
Good work! @SuvamPrasd Expecting more contributions from your end! 👍🏻 |
Yeah sure dude 😊 |
Description
This is a connect 4 games developed using a python programming language. For this program, I have used the pygame package and Tkinter package for GUI.
Fixes #125
Replace
issue_no
in the above line, with the issue related to this PR.Type of change
Choosing one or more options from the following as per the nature of your Pull request.
NOTE: These boxes can be checked using
[X]
Bug fix (non-breaking change which fixes an issue)
New feature (non-breaking change which adds functionality)
Documentation Update
Checklist:
Please tick all the boxes that are fulfilled by your Pull Request.
Update index.md
)README.md
, according to the givenREADME_TEMPLATE.