Skip to content

Commit c2576ce

Browse files
Zanger67/leetcodeZanger67/leetcode
authored andcommitted
Updated markdown files
1 parent d4e60c6 commit c2576ce

File tree

510 files changed

+607
-525
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

510 files changed

+607
-525
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# **[LeetCode Records](https://leetcode.com/u/Zanger/)** (609 solved)
1+
# **[LeetCode Records](https://leetcode.com/u/Zanger/)** (610 solved)
22

33
<!-- This readme was generated using [WikiLeet](<https://github.com/Zanger67/WikiLeet>) -->
44

@@ -649,6 +649,7 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
649649
| 3242 | [Design Neighbor Sum Service](<https://leetcode.com/problems/design-neighbor-sum-service>) | Easy | | [solution](<markdowns/_3242. Design Neighbor Sum Service.md>) | py |
650650
| 3248 | [Snake in Matrix](<https://leetcode.com/problems/snake-in-matrix>) | Easy | | [solution](<markdowns/_3248. Snake in Matrix.md>) | py |
651651
| 3249 | [Count the Number of Good Nodes](<https://leetcode.com/problems/count-the-number-of-good-nodes>) | Medium | | [solution](<markdowns/_3249. Count the Number of Good Nodes.md>) | py |
652+
| 3306 | [Count of Substrings Containing Every Vowel and K Consonants II](<https://leetcode.com/problems/count-of-substrings-containing-every-vowel-and-k-consonants-ii>) | Medium | Daily | [solution](<markdowns/_3306. Count of Substrings Containing Every Vowel and K Consonants II.md>) | py |
652653
| 3443 | [Maximum Manhattan Distance After K Changes](<https://leetcode.com/problems/maximum-manhattan-distance-after-k-changes>) | Medium | | [solution](<markdowns/_3443. Maximum Manhattan Distance After K Changes.md>) | py |
653654
| 3460 | [Longest Common Prefix After at Most One Removal](<https://leetcode.com/problems/longest-common-prefix-after-at-most-one-removal>) | Medium | | [solution](<markdowns/_3460. Longest Common Prefix After at Most One Removal.md>) | py |
654655

markdowns/Daily_Questions.md

Lines changed: 17 additions & 16 deletions
Large diffs are not rendered by default.

markdowns/Medium.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Medium Questions (393)
1+
# Medium Questions (394)
22

33
*[Back to top](<../README.md>)*
44

@@ -397,5 +397,6 @@
397397
| 3239 | Biweekly Contest 136 - q2 - [Minimum Number of Flips to Make Binary Grid Palindromic I](<https://leetcode.com/problems/minimum-number-of-flips-to-make-binary-grid-palindromic-i>) | Medium | Contest | [solution](<_3239. Minimum Number of Flips to Make Binary Grid Palindromic I.md>) | py | Aug 03, 2024 |
398398
| 3240 | Biweekly Contest 136 - q3 - [Minimum Number of Flips to Make Binary Grid Palindromic II](<https://leetcode.com/problems/minimum-number-of-flips-to-make-binary-grid-palindromic-ii>) | Medium | Contest | [solution](<_3240. Minimum Number of Flips to Make Binary Grid Palindromic II.md>) | py | Aug 03, 2024 |
399399
| 3249 | [Count the Number of Good Nodes](<https://leetcode.com/problems/count-the-number-of-good-nodes>) | Medium | | [solution](<_3249. Count the Number of Good Nodes.md>) | py | Aug 12, 2024 |
400+
| 3306 | [Count of Substrings Containing Every Vowel and K Consonants II](<https://leetcode.com/problems/count-of-substrings-containing-every-vowel-and-k-consonants-ii>) | Medium | Daily | [solution](<_3306. Count of Substrings Containing Every Vowel and K Consonants II.md>) | py | Mar 10, 2025 |
400401
| 3443 | [Maximum Manhattan Distance After K Changes](<https://leetcode.com/problems/maximum-manhattan-distance-after-k-changes>) | Medium | | [solution](<_3443. Maximum Manhattan Distance After K Changes.md>) | py | Feb 04, 2025 |
401402
| 3460 | [Longest Common Prefix After at Most One Removal](<https://leetcode.com/problems/longest-common-prefix-after-at-most-one-removal>) | Medium | | [solution](<_3460. Longest Common Prefix After at Most One Removal.md>) | py | Feb 17, 2025 |

markdowns/Questions_By_Code_Length.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ Calculations are based on the code files's byte sizes.
104104
| 430 | [Flatten a Multilevel Doubly Linked List](<https://leetcode.com/problems/flatten-a-multilevel-doubly-linked-list>) | Medium | | [solution](<_430. Flatten a Multilevel Doubly Linked List.md>) | cpp, java | Jun 27, 2024 |
105105
| 239 | [Sliding Window Maximum](<https://leetcode.com/problems/sliding-window-maximum>) | Hard | N150 | [solution](<_239. Sliding Window Maximum.md>) | py | Jun 04, 2024 |
106106
| 103 | [Binary Tree Zigzag Level Order Traversal](<https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal>) | Medium | | [solution](<_103. Binary Tree Zigzag Level Order Traversal.md>) | py | Jul 03, 2024 |
107+
| 3306 | [Count of Substrings Containing Every Vowel and K Consonants II](<https://leetcode.com/problems/count-of-substrings-containing-every-vowel-and-k-consonants-ii>) | Medium | Daily | [solution](<_3306. Count of Substrings Containing Every Vowel and K Consonants II.md>) | py | Mar 10, 2025 |
107108
| 645 | [Set Mismatch](<https://leetcode.com/problems/set-mismatch>) | Easy | | [solution](<_645. Set Mismatch.md>) | java, py | Jun 01, 2024 |
108109
| 1980 | [Find Unique Binary String](<https://leetcode.com/problems/find-unique-binary-string>) | Medium | Daily | [solution](<_1980. Find Unique Binary String.md>) | c, py | Jun 27, 2024 |
109110
| 199 | [Binary Tree Right Side View](<https://leetcode.com/problems/binary-tree-right-side-view>) | Medium | N150 | [solution](<_199. Binary Tree Right Side View.md>) | cpp, java | Jul 04, 2024 |

markdowns/Questions_By_Recent.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Calculations are based on the date of the first solve.
66

77
| # | Title | Level | Cats | Solution | Languages | Date Complete |
88
|-----:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:--------------------------|:----------------------------------------------------------------------------------------------------|:--------------------------------------------|:----------------|
9+
| 3306 | [Count of Substrings Containing Every Vowel and K Consonants II](<https://leetcode.com/problems/count-of-substrings-containing-every-vowel-and-k-consonants-ii>) | Medium | Daily | [solution](<_3306. Count of Substrings Containing Every Vowel and K Consonants II.md>) | py | Mar 10, 2025 |
910
| 2379 | [Minimum Recolors to Get K Consecutive Black Blocks](<https://leetcode.com/problems/minimum-recolors-to-get-k-consecutive-black-blocks>) | Easy | Daily | [solution](<_2379. Minimum Recolors to Get K Consecutive Black Blocks.md>) | py | Mar 08, 2025 |
1011
| 2523 | [Closest Prime Numbers in Range](<https://leetcode.com/problems/closest-prime-numbers-in-range>) | Medium | Daily | [solution](<_2523. Closest Prime Numbers in Range.md>) | py | Mar 07, 2025 |
1112
| 2965 | [Find Missing and Repeated Values](<https://leetcode.com/problems/find-missing-and-repeated-values>) | Easy | Daily | [solution](<_2965. Find Missing and Repeated Values.md>) | py | Mar 06, 2025 |

markdowns/Topics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
------
66

77
- [Array](<by_topic/Array.md>) (300 completed)
8-
- [String](<by_topic/String.md>) (140 completed)
9-
- [Hash Table](<by_topic/Hash Table.md>) (134 completed)
8+
- [String](<by_topic/String.md>) (141 completed)
9+
- [Hash Table](<by_topic/Hash Table.md>) (135 completed)
1010
- [Depth-First Search](<by_topic/Depth-First Search.md>) (103 completed)
1111
- [Tree](<by_topic/Tree.md>) (91 completed)
1212
- [Binary Tree](<by_topic/Binary Tree.md>) (82 completed)
@@ -26,7 +26,7 @@
2626
- [Binary Search](<by_topic/Binary Search.md>) (30 completed)
2727
- [Backtracking](<by_topic/Backtracking.md>) (27 completed)
2828
- [Heap (Priority Queue)](<by_topic/Heap (Priority Queue).md>) (26 completed)
29-
- [Sliding Window](<by_topic/Sliding Window.md>) (20 completed)
29+
- [Sliding Window](<by_topic/Sliding Window.md>) (21 completed)
3030
- [Trie](<by_topic/Trie.md>) (19 completed)
3131
- [Prefix Sum](<by_topic/Prefix Sum.md>) (19 completed)
3232
- [Recursion](<by_topic/Recursion.md>) (19 completed)

markdowns/_1. Two Sum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
> **Related Topics** : **[Array](<by_topic/Array.md>), [Hash Table](<by_topic/Hash Table.md>)**
1616
>
17-
> **Acceptance Rate** : **55.03 %**
17+
> **Acceptance Rate** : **55.09 %**
1818
1919
------
2020

markdowns/_100. Same Tree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
> **Related Topics** : **[Tree](<by_topic/Tree.md>), [Depth-First Search](<by_topic/Depth-First Search.md>), [Breadth-First Search](<by_topic/Breadth-First Search.md>), [Binary Tree](<by_topic/Binary Tree.md>)**
1616
>
17-
> **Acceptance Rate** : **64.4 %**
17+
> **Acceptance Rate** : **64.45 %**
1818
1919
------
2020

markdowns/_1004. Max Consecutive Ones III.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
> **Related Topics** : **[Array](<by_topic/Array.md>), [Binary Search](<by_topic/Binary Search.md>), [Sliding Window](<by_topic/Sliding Window.md>), [Prefix Sum](<by_topic/Prefix Sum.md>)**
1616
>
17-
> **Acceptance Rate** : **65.18 %**
17+
> **Acceptance Rate** : **65.24 %**
1818
1919
------
2020

markdowns/_1006. Clumsy Factorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
> **Related Topics** : **[Math](<by_topic/Math.md>), [Stack](<by_topic/Stack.md>), [Simulation](<by_topic/Simulation.md>)**
1616
>
17-
> **Acceptance Rate** : **58.65 %**
17+
> **Acceptance Rate** : **58.73 %**
1818
1919
------
2020

0 commit comments

Comments
 (0)