-
Notifications
You must be signed in to change notification settings - Fork 3
update: 添加问题“1039.多边形三角剖分的最低得分”的代码和题解 #1152
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
Conversation
0976: AC.cpp+py+java+go+rust (#1149) cpp - AC,58.29%,26.60% rust - AC,-%,100.00% java - AC,96.37%,99.05% go - AC,47.06%,100.00% py - AC,34.41%,25.76% Signed-off-by: LetMeFly666 <814114971@qq.com>
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.
Pull Request Overview
This PR adds the solution for LeetCode problem 1039 "Minimum Score Triangulation of Polygon" along with related language learning notes. The solution implements a memoized depth-first search (DFS) approach to find the minimum triangulation score.
- Added comprehensive solution with detailed explanation using dynamic programming/memoization
- Included multiple code versions and competitive programming attempts
- Updated language learning notes with new vocabulary entries
Reviewed Changes
Copilot reviewed 22 out of 22 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| Solutions/LeetCode 1039.多边形三角剖分的最低得分.md | Complete solution writeup with algorithm explanation and C++ implementation |
| README.md | Added entry for LeetCode 1039 with links to solution and external resources |
| Codes/1039-minimum-score-triangulation-of-polygon_Ok.cpp | Working C++ solution implementing memoized DFS approach |
| Codes/1039-minimum-score-triangulation-of-polygon.cpp | Initial solution attempt (non-working approach) |
| Multiple pinduoduo*.cpp files | Various competitive programming solutions and attempts |
| Solutions/Other-Japanese-LearningNotes.md | Added Japanese vocabulary entries |
| Solutions/Other-English-LearningNotes-SomeWords.md | Added English vocabulary entries |
| Codes/lib.rs | Updated timestamp |
| .vscode/settings.json | Added C++ intellisense configuration |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
By newSolution.py using GH on MacOS | close: #1151