-
Notifications
You must be signed in to change notification settings - Fork 19.9k
Update EggDropping.java #6047
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
Update EggDropping.java #6047
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #6047 +/- ##
============================================
- Coverage 72.97% 72.96% -0.01%
+ Complexity 5029 5028 -1
============================================
Files 655 655
Lines 17588 17590 +2
Branches 3387 3386 -1
============================================
+ Hits 12834 12835 +1
- Misses 4262 4263 +1
Partials 492 492 ☔ View full report in Codecov by Sentry. |
@siriak please review it! |
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.
Please replace main with JUnit tests
## Changes Made 1. Improved Documentation - Added comprehensive class-level JavaDoc - Added detailed method documentation with @param and @return tags - Added time and space complexity analysis (O(n*m*m) time, O(n*m) space) - Added comments explaining DP state transitions and base cases 2. Code Quality Improvements - Made class final and constructor private (utility class best practice) - Added try-catch block in main method for better error handling The core dynamic programming algorithm remains unchanged, maintaining its educational value while improving code quality and documentation.
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contribution! |
Please reopen this pull request once you have made the required changes. If you need help, feel free to ask in our Discord server or ping one of the maintainers here. Thank you for your contribution! |
Changes Made
Improved Documentation
Code Quality Improvements
The core dynamic programming algorithm remains unchanged, maintaining its educational value while improving code quality and documentation.
clang-format -i --style=file path/to/your/file.java