Skip to content

Commit d881c4c

Browse files
Zanger67/leetcodeZanger67/leetcode
Zanger67/leetcode
authored and
Zanger67/leetcode
committed
Updated markdown files
1 parent 4262d09 commit d881c4c

8 files changed

+24
-23
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
378378
| 1325 | [Delete Leaves With a Given Value](<https://leetcode.com/problems/delete-leaves-with-a-given-value>) | Medium | | [solution](<markdowns/_1325. Delete Leaves With a Given Value.md>) | py |
379379
| 1334 | [Find the City With the Smallest Number of Neighbors at a Threshold Distance](<https://leetcode.com/problems/find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance>) | Medium | Daily | [solution](<markdowns/_1334. Find the City With the Smallest Number of Neighbors at a Threshold Distance.md>) | py |
380380
| 1351 | [Count Negative Numbers in a Sorted Matrix](<https://leetcode.com/problems/count-negative-numbers-in-a-sorted-matrix>) | Easy | | [solution](<markdowns/_1351. Count Negative Numbers in a Sorted Matrix.md>) | java, py |
381-
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | | [solution](<markdowns/_1358. Number of Substrings Containing All Three Characters.md>) | py |
381+
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | Daily | [solution](<markdowns/_1358. Number of Substrings Containing All Three Characters.md>) | py |
382382
| 1367 | [Linked List in Binary Tree](<https://leetcode.com/problems/linked-list-in-binary-tree>) | Medium | Daily | [solution](<markdowns/_1367. Linked List in Binary Tree.md>) | py |
383383
| 1368 | [Minimum Cost to Make at Least One Valid Path in a Grid](<https://leetcode.com/problems/minimum-cost-to-make-at-least-one-valid-path-in-a-grid>) | Hard | Daily | [solution](<markdowns/_1368. Minimum Cost to Make at Least One Valid Path in a Grid.md>) | py |
384384
| 1372 | [Longest ZigZag Path in a Binary Tree](<https://leetcode.com/problems/longest-zigzag-path-in-a-binary-tree>) | Medium | | [solution](<markdowns/_1372. Longest ZigZag Path in a Binary Tree.md>) | py |

markdowns/Daily_Questions.md

+17-16
Large diffs are not rendered by default.

markdowns/Medium.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
| 1315 | [Sum of Nodes with Even-Valued Grandparent](<https://leetcode.com/problems/sum-of-nodes-with-even-valued-grandparent>) | Medium | | [solution](<_1315. Sum of Nodes with Even-Valued Grandparent.md>) | py | Jun 12, 2024 |
221221
| 1325 | [Delete Leaves With a Given Value](<https://leetcode.com/problems/delete-leaves-with-a-given-value>) | Medium | | [solution](<_1325. Delete Leaves With a Given Value.md>) | py | Aug 22, 2024 |
222222
| 1334 | [Find the City With the Smallest Number of Neighbors at a Threshold Distance](<https://leetcode.com/problems/find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance>) | Medium | Daily | [solution](<_1334. Find the City With the Smallest Number of Neighbors at a Threshold Distance.md>) | py | Jul 26, 2024 |
223-
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | | [solution](<_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
223+
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | Daily | [solution](<_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
224224
| 1367 | [Linked List in Binary Tree](<https://leetcode.com/problems/linked-list-in-binary-tree>) | Medium | Daily | [solution](<_1367. Linked List in Binary Tree.md>) | py | Sep 07, 2024 |
225225
| 1372 | [Longest ZigZag Path in a Binary Tree](<https://leetcode.com/problems/longest-zigzag-path-in-a-binary-tree>) | Medium | | [solution](<_1372. Longest ZigZag Path in a Binary Tree.md>) | py | Jul 05, 2024 |
226226
| 1376 | [Time Needed to Inform All Employees](<https://leetcode.com/problems/time-needed-to-inform-all-employees>) | Medium | | [solution](<_1376. Time Needed to Inform All Employees.md>) | py | Oct 26, 2024 |

markdowns/Questions_By_Code_Length.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ Calculations are based on the code files's byte sizes.
378378
| 230 | [Kth Smallest Element in a BST](<https://leetcode.com/problems/kth-smallest-element-in-a-bst>) | Medium | B75, N150 | [solution](<_230. Kth Smallest Element in a BST.md>) | py | Jun 29, 2024 |
379379
| 1051 | [Height Checker](<https://leetcode.com/problems/height-checker>) | Easy | Daily | [solution](<_1051. Height Checker.md>) | c, py | Jun 10, 2024 |
380380
| 2196 | [Create Binary Tree From Descriptions](<https://leetcode.com/problems/create-binary-tree-from-descriptions>) | Medium | Daily | [solution](<_2196. Create Binary Tree From Descriptions.md>) | py | Jul 15, 2024 |
381-
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | | [solution](<_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
381+
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | Daily | [solution](<_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
382382
| 1426 | [Counting Elements](<https://leetcode.com/problems/counting-elements>) | Easy | | [solution](<_1426. Counting Elements.md>) | c | Jun 04, 2024 |
383383
| 8 | [String to Integer (atoi)](<https://leetcode.com/problems/string-to-integer-atoi>) | Medium | | [solution](<_8. String to Integer (atoi).md>) | py | Jun 10, 2024 |
384384
| 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 |

markdowns/Questions_By_Recent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Calculations are based on the date of the first solve.
88
|-----:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:--------------------------|:----------------------------------------------------------------------------------------------------|:--------------------------------------------|:----------------|
99
| 42 | [Trapping Rain Water](<https://leetcode.com/problems/trapping-rain-water>) | Hard | N150 | [solution](<_42. Trapping Rain Water.md>) | py | Mar 11, 2025 |
1010
| 2063 | [Vowels of All Substrings](<https://leetcode.com/problems/vowels-of-all-substrings>) | Medium | | [solution](<_2063. Vowels of All Substrings.md>) | py | Mar 11, 2025 |
11-
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | | [solution](<_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
11+
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | Daily | [solution](<_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
1212
| 1100 | [Find K-Length Substrings With No Repeated Characters](<https://leetcode.com/problems/find-k-length-substrings-with-no-repeated-characters>) | Medium | Weekly Premium | [solution](<_1100. Find K-Length Substrings With No Repeated Characters.md>) | py | Mar 10, 2025 |
1313
| 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 |
1414
| 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 |

markdowns/by_topic/Hash Table.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
| 1261 | [Find Elements in a Contaminated Binary Tree](<https://leetcode.com/problems/find-elements-in-a-contaminated-binary-tree>) | Medium | Daily | [solution](<../_1261. Find Elements in a Contaminated Binary Tree.md>) | py | Feb 21, 2025 |
7676
| 1282 | [Group the People Given the Group Size They Belong To](<https://leetcode.com/problems/group-the-people-given-the-group-size-they-belong-to>) | Medium | | [solution](<../_1282. Group the People Given the Group Size They Belong To.md>) | py | Jun 28, 2024 |
7777
| 1284 | [Minimum Number of Flips to Convert Binary Matrix to Zero Matrix](<https://leetcode.com/problems/minimum-number-of-flips-to-convert-binary-matrix-to-zero-matrix>) | Hard | | [solution](<../_1284. Minimum Number of Flips to Convert Binary Matrix to Zero Matrix.md>) | py | Jun 09, 2024 |
78-
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | | [solution](<../_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
78+
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | Daily | [solution](<../_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
7979
| 1400 | [Construct K Palindrome Strings](<https://leetcode.com/problems/construct-k-palindrome-strings>) | Medium | Daily | [solution](<../_1400. Construct K Palindrome Strings.md>) | py | Jan 11, 2025 |
8080
| 1426 | [Counting Elements](<https://leetcode.com/problems/counting-elements>) | Easy | | [solution](<../_1426. Counting Elements.md>) | c | Jun 04, 2024 |
8181
| 1429 | [First Unique Number](<https://leetcode.com/problems/first-unique-number>) | Medium | | [solution](<../_1429. First Unique Number.md>) | py | Oct 26, 2024 |

markdowns/by_topic/Sliding Window.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
| 1100 | [Find K-Length Substrings With No Repeated Characters](<https://leetcode.com/problems/find-k-length-substrings-with-no-repeated-characters>) | Medium | Weekly Premium | [solution](<../_1100. Find K-Length Substrings With No Repeated Characters.md>) | py | Mar 10, 2025 |
2121
| 1151 | [Minimum Swaps to Group All 1's Together](<https://leetcode.com/problems/minimum-swaps-to-group-all-1s-together>) | Medium | Weekly Premium | [solution](<../_1151. Minimum Swaps to Group All 1's Together.md>) | py | Mar 01, 2025 |
2222
| 1248 | [Count Number of Nice Subarrays](<https://leetcode.com/problems/count-number-of-nice-subarrays>) | Medium | Daily | [solution](<../_1248. Count Number of Nice Subarrays.md>) | py | Jun 22, 2024 |
23-
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | | [solution](<../_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
23+
| 1358 | [Number of Substrings Containing All Three Characters](<https://leetcode.com/problems/number-of-substrings-containing-all-three-characters>) | Medium | Daily | [solution](<../_1358. Number of Substrings Containing All Three Characters.md>) | py | Mar 11, 2025 |
2424
| 1438 | [Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit](<https://leetcode.com/problems/longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit>) | Medium | Daily | [solution](<../_1438. Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit.md>) | java | Jun 24, 2024 |
2525
| 1493 | [Longest Subarray of 1's After Deleting One Element](<https://leetcode.com/problems/longest-subarray-of-1s-after-deleting-one-element>) | Medium | | [solution](<../_1493. Longest Subarray of 1's After Deleting One Element.md>) | py | Feb 17, 2025 |
2626
| 1852 | [Distinct Numbers in Each Subarray](<https://leetcode.com/problems/distinct-numbers-in-each-subarray>) | Medium | Weekly Premium | [solution](<../_1852. Distinct Numbers in Each Subarray.md>) | java, py | Jun 27, 2024 |

0 commit comments

Comments
 (0)