Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the existing multi-language solution for LC 3121 by simplifying the per-letter validation logic, and adds Rust implementations (plus documentation snippets) for LC 3120 and LC 3121 within the repository’s solutions collection.
Changes:
- Simplified the “special character” check for LC 3121 across C++/Go/Java/TypeScript (removing redundant
first[...] > 0presence checks). - Added Rust solutions for LC 3120 and LC 3121.
- Updated both Chinese and English READMEs to include the Rust implementations and keep code snippets in sync with the solution files.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| solution/3100-3199/3121.Count the Number of Special Characters II/Solution.ts | Refactors per-letter check for readability by introducing a/b and removing redundant presence test. |
| solution/3100-3199/3121.Count the Number of Special Characters II/Solution.rs | Adds Rust implementation for LC 3121. |
| solution/3100-3199/3121.Count the Number of Special Characters II/Solution.java | Refactors per-letter check with a/b and removes redundant presence test. |
| solution/3100-3199/3121.Count the Number of Special Characters II/Solution.go | Simplifies condition by removing redundant first[...] > 0 check. |
| solution/3100-3199/3121.Count the Number of Special Characters II/Solution.cpp | Simplifies condition by removing redundant first[...] truthiness check. |
| solution/3100-3199/3121.Count the Number of Special Characters II/README.md | Syncs snippet changes and adds Rust section. |
| solution/3100-3199/3121.Count the Number of Special Characters II/README_EN.md | Syncs snippet changes and adds Rust section. |
| solution/3100-3199/3120.Count the Number of Special Characters I/Solution.rs | Adds Rust implementation for LC 3120. |
| solution/3100-3199/3120.Count the Number of Special Characters I/README.md | Adds Rust snippet for LC 3120. |
| solution/3100-3199/3120.Count the Number of Special Characters I/README_EN.md | Adds Rust snippet for LC 3120. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.