added Tik tak toe game #302
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
π Pull Request Title
added Tik tak toe game
β Description
it is a 2-player Tic-Tac-Toe game with turn-based play, win/draw detection, and reset/new game functionality.
-3x3 grid of boxes (.box)
-Control buttons: #reset (reset game), #newgame (start new game)
-Message container: #msg for winner/draw messages
-Popup container: .win for game-end display
how to play
-Players take turns: O and X
-Check 8 winning patterns after each move
-Detect draw if all boxes filled
-Reset clears grid and restarts turns
Language: HTML / CSS / JavaScript
π Related Issue
Fixes # or Closes #
closes #287
π οΈ Approach / Changes Made
-Added click event listeners for each box to toggle between O and X turns.
-Included win detection using predefined winning patterns.
-Handled draw condition when all boxes are filled without a winner.
-Added Reset and New Game buttons to restart the game.
-Simplified DOM updates and improved code readability.
πΈ Screenshots / Videos (if applicable)
β Checklist
π¬ Additional Notes (Optional)