-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My Solutions #2
base: master
Are you sure you want to change the base?
My Solutions #2
Conversation
Reviewer's Guide by SourceryThis PR adds a new implementation of a "bomb" program - an exercise commonly used in computer systems courses to teach debugging and reverse engineering. The program implements a series of six phases that users must solve, with each phase requiring specific input to be "defused". The implementation includes a main function that handles program initialization, input processing, and sequential execution of the six phases. Class diagram for the bomb programclassDiagram
class Bomb {
- FILE *infile
+ main(int argc, char *argv[])
+ initialize_bomb()
+ read_line() : char*
+ phase_1(char* input)
+ phase_2(char* input)
+ phase_3(char* input)
+ phase_4(char* input)
+ phase_5(char* input)
+ phase_6(char* input)
+ phase_defused()
}
note for Bomb "The Bomb class represents the main structure of the bomb program, handling input and executing phases."
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Hey @hoon050824 - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Summary by Sourcery
New Features: