feat(tic-tac-toe): Tic-Tac-Toe by Auriane Pusel #6
Open
aurianecodebien wants to merge 4 commits intodev-sys-do:mainfrom
Open
feat(tic-tac-toe): Tic-Tac-Toe by Auriane Pusel #6aurianecodebien wants to merge 4 commits intodev-sys-do:mainfrom
aurianecodebien wants to merge 4 commits intodev-sys-do:mainfrom
Conversation
Signed-off-by: auriane.pusel <auriane.pusel@etu.umontpellier.fr>
Signed-off-by: auriane.pusel <auriane.pusel@etu.umontpellier.fr>
Signed-off-by: auriane.pusel <auriane.pusel@etu.umontpellier.fr>
Signed-off-by: auriane.pusel <auriane.pusel@etu.umontpellier.fr>
jorisvilardell
added a commit
to jorisvilardell/project-2427
that referenced
this pull request
Oct 30, 2025
…isShare protocol (dev-sys-do#6) * feat(storage): add StorageError enum with Display implementation and update StorageRepository trait * feat(storage): implement FSStorageRepository with file handling and sanitization * feat(command): update CommandService trait to include process_binary_data method * feat(network): make command_service public in NetworkServiceImpl * feat(application): implement FerrisShareState struct with command and network services * refactor(network): remove unused HashSet import from entities.rs * feat(main): refactor main function to initialize services with storage repository * feat(storage): add Display implementation for StorageError enum * feat(command): implement From trait for CommandError to String conversion * feat(command): update execute_protocol_command to return OkHousten and enhance process_binary_data with error handling * refactor(network): handle process write binary data and closing connection on sender close it * feat(network): enhance TransferState to track current file during data transfer
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Tic-Tac-Toe AI Agent Implementation
Description
This PR implements a complete Tic-Tac-Toe game with an unbeatable AI opponent using the Minimax algorithm.
Features
Implementation Details
Modules
types.rs: Core type definitions (Player, Cell)board.rs: 3x3 game board representationgame.rs: Game logic and win detectionai.rs: Minimax algorithm implementationmain.rs: CLI interfaceTesting
Documentation
docs/architecture.mdHow to Test