feat: Add Pascal's Triangle implementation in Java #647
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.
Description
Added a comprehensive Pascal's Triangle implementation in Java as part of Hacktoberfest 2025.
Type of Change
What was implemented?
PascalsTriangle.javain the/javadirectoryprintTriangleSimple()- Left-aligned simple outputprintTriangle()- Beautiful centered formatted outputAlgorithm Details
Features
✅ Interactive user input via Scanner
✅ Formatted and simple output options
✅ Proper documentation and comments
✅ Input validation (handles edge cases)
✅ Follows repository coding standards
Testing
The implementation includes a main method that can be run directly to test the functionality.
Example Output
For n=5:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
Related Issue
Resolves the first Hacktoberfest issue for Pascal's Triangle in Java.
Checklist
Happy Hacktoberfest 2025! 🎉