Skip to content

Conversation

@LetMeFly666
Copy link
Owner

By newSolution.py using GH on MacOS | close: #1011

git branch -D 2099
已删除分支 2099(曾为 23b6ee8)

Signed-off-by: LetMeFly666 <814114971@qq.com>
traceback:
#1003
 x   x
ab5c736
|stillness|
681de37
Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
AC,5.02%,5.02%

Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
AC,32.88%,96.40%

Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
AC,74.09%,61.14%

Signed-off-by: LetMeFly666 <814114971@qq.com>
AC,79.73%,72.97%

Signed-off-by: LetMeFly666 <814114971@qq.com>
Signed-off-by: LetMeFly666 <814114971@qq.com>
@LetMeFly666 LetMeFly666 added the 题解 Solution label Jul 12, 2025
@LetMeFly666 LetMeFly666 self-assigned this Jul 12, 2025
@LetMeFly666 LetMeFly666 added the under merge pr准备就绪 请做merge前最后的检查 label Jul 12, 2025
@LetMeFly666 LetMeFly666 requested a review from Copilot July 12, 2025 14:48

This comment was marked as outdated.

Copy link
Owner Author

@LetMeFly666 LetMeFly666 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wait for 今日の 单词们

Signed-off-by: LetMeFly666 <814114971@qq.com>
@LetMeFly666 LetMeFly666 requested a review from Copilot July 12, 2025 15:06

This comment was marked as outdated.

Copy link
Owner Author

@LetMeFly666 LetMeFly666 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LetMeFly666 LetMeFly666 requested a review from Copilot July 12, 2025 15:07
@LetMeFly666 LetMeFly666 removed the under merge pr准备就绪 请做merge前最后的检查 label Jul 12, 2025
@LetMeFly666 LetMeFly666 merged commit 5eb4cd2 into master Jul 12, 2025
1 check passed
@LetMeFly666
Copy link
Owner Author

bye copliot

@LetMeFly666 LetMeFly666 deleted the 3169 branch July 12, 2025 15:07
Copy link
Contributor

Copilot AI left a 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 introduces a complete solution for LeetCode problem 3169 (“Count Days Without Meetings”), including problem description, explanation, and code in multiple languages, updates the main README to reference the new problem, and tidies up formatting in the language learning notes.

  • Added problem statement, walkthrough, and AC code (C++, Python, Java, Go) for 3169.
  • Updated README.md to include an entry for problem 3169.
  • Cleaned up and added entries in Japanese and English learning note Markdown files.

Reviewed Changes

Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.

Show a summary per file
File Description
Solutions/Other-Japanese-LearningNotes.md Added new Japanese vocabulary entries
Solutions/Other-English-LearningNotes-SomeWords.md Removed stray characters and added new English words
Solutions/LeetCode 3169.无需开会的工作日.md New problem write-up, explanation, and code examples
README.md Inserted listing for problem 3169
Codes/3169-count-days-without-meetings.py Added Python implementation
Codes/3169-count-days-without-meetings.java Added Java implementation
Codes/3169-count-days-without-meetings.go Added Go implementation
Codes/3169-count-days-without-meetings.cpp Added C++ implementation
Comments suppressed due to low confidence (3)

Codes/3169-count-days-without-meetings.go:18

  • The call to max is undefined in Go; consider replacing it with a conditional expression (e.g., if me[1] > last { last = me[1] }) or adding a small helper function for int max.
        last = max(last, me[1])

Codes/3169-count-days-without-meetings.cpp:14

  • This implementation uses sort and max without including <algorithm>; add #include <algorithm> (and <vector> if needed) to ensure proper declarations.
        sort(meetings.begin(), meetings.end());

Solutions/LeetCode 3169.无需开会的工作日.md:182

  • In the Go code snippet, max isn’t built in; update the example to use a conditional assignment or include a helper function so that the snippet compiles correctly.
        last = max(last, me[1])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

题解 Solution

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[newSolution]Who can add 1 more problem of LeetCode 3169

2 participants