Skip to content

Commit 03398f8

Browse files
Zanger67/leetcodeZanger67/leetcode
Zanger67/leetcode
authored and
Zanger67/leetcode
committed
Updated markdown files
1 parent aab7766 commit 03398f8

File tree

513 files changed

+558
-512
lines changed

Some content is hidden

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

513 files changed

+558
-512
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# **[LeetCode Records](https://leetcode.com/u/Zanger/)** (616 solved)
1+
# **[LeetCode Records](https://leetcode.com/u/Zanger/)** (617 solved)
22

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

@@ -564,6 +564,7 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
564564
| 2579 | [Count Total Number of Colored Cells](<https://leetcode.com/problems/count-total-number-of-colored-cells>) | Medium | Daily | [solution](<markdowns/_2579. Count Total Number of Colored Cells.md>) | py |
565565
| 2582 | [Pass the Pillow](<https://leetcode.com/problems/pass-the-pillow>) | Easy | Daily | [solution](<markdowns/_2582. Pass the Pillow.md>) | c, cpp, cs, java, js, py |
566566
| 2583 | [Kth Largest Sum in a Binary Tree](<https://leetcode.com/problems/kth-largest-sum-in-a-binary-tree>) | Medium | Daily | [solution](<markdowns/_2583. Kth Largest Sum in a Binary Tree.md>) | py |
567+
| 2594 | [Minimum Time to Repair Cars](<https://leetcode.com/problems/minimum-time-to-repair-cars>) | Medium | Daily | [solution](<markdowns/_2594. Minimum Time to Repair Cars.md>) | py |
567568
| 2599 | [Make the Prefix Sum Non-negative](<https://leetcode.com/problems/make-the-prefix-sum-non-negative>) | Medium | Weekly Premium | [solution](<markdowns/_2599. Make the Prefix Sum Non-negative.md>) | py |
568569
| 2610 | [Convert an Array Into a 2D Array With Conditions](<https://leetcode.com/problems/convert-an-array-into-a-2d-array-with-conditions>) | Medium | | [solution](<markdowns/_2610. Convert an Array Into a 2D Array With Conditions.md>) | py |
569570
| 2619 | [Array Prototype Last](<https://leetcode.com/problems/array-prototype-last>) | Easy | | [solution](<markdowns/_2619. Array Prototype Last.md>) | js |

markdowns/Daily_Questions.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ Dates are for the date I completed the question so due to the my time zone and h
1010
| | | | | | | [1](<_2460. Apply Operations to an Array.md>) |
1111
| [2](<_2570. Merge Two 2D Arrays by Summing Values.md>) | [3](<_2161. Partition Array According to Given Pivot.md>) | [4](<_1780. Check if Number is a Sum of Powers of Three.md>) | [5](<_2579. Count Total Number of Colored Cells.md>) | [6](<_2965. Find Missing and Repeated Values.md>) | [7](<_2523. Closest Prime Numbers in Range.md>) | [8](<_2379. Minimum Recolors to Get K Consecutive Black Blocks.md>) |
1212
| 9 | [10](<_3306. Count of Substrings Containing Every Vowel and K Consonants II.md>) | [11](<_1358. Number of Substrings Containing All Three Characters.md>) | [12](<_2529. Maximum Count of Positive Integer and Negative Integer.md>) | 13 | 14 | 15 |
13-
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
13+
| [16](<_2594. Minimum Time to Repair Cars.md>) | 17 | 18 | 19 | 20 | 21 | 22 |
1414
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
1515
| 30 | 31 | | | | | |
1616

1717

1818

1919
| # | Title | Level | Cats | Solution | Languages | Date Complete |
2020
|-----:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:---------------|:----------------------------------------------------------------------------------------------------|:-----------------------------|:----------------|
21+
| 2594 | [Minimum Time to Repair Cars](<https://leetcode.com/problems/minimum-time-to-repair-cars>) | Medium | Daily | [solution](<_2594. Minimum Time to Repair Cars.md>) | py | Mar 16, 2025 |
2122
| 2529 | [Maximum Count of Positive Integer and Negative Integer](<https://leetcode.com/problems/maximum-count-of-positive-integer-and-negative-integer>) | Easy | Daily | [solution](<_2529. Maximum Count of Positive Integer and Negative Integer.md>) | py | Mar 12, 2025 |
2223
| 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 |
2324
| 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 |
@@ -264,7 +265,7 @@ Dates are for the date I completed the question so due to the my time zone and h
264265
| | | | | | | [1](<_2460. Apply Operations to an Array.md>) |
265266
| [2](<_2570. Merge Two 2D Arrays by Summing Values.md>) | [3](<_2161. Partition Array According to Given Pivot.md>) | [4](<_1780. Check if Number is a Sum of Powers of Three.md>) | [5](<_2579. Count Total Number of Colored Cells.md>) | [6](<_2965. Find Missing and Repeated Values.md>) | [7](<_2523. Closest Prime Numbers in Range.md>) | [8](<_2379. Minimum Recolors to Get K Consecutive Black Blocks.md>) |
266267
| 9 | [10](<_3306. Count of Substrings Containing Every Vowel and K Consonants II.md>) | [11](<_1358. Number of Substrings Containing All Three Characters.md>) | [12](<_2529. Maximum Count of Positive Integer and Negative Integer.md>) | 13 | 14 | 15 |
267-
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
268+
| [16](<_2594. Minimum Time to Repair Cars.md>) | 17 | 18 | 19 | 20 | 21 | 22 |
268269
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
269270
| 30 | 31 | | | | | |
270271

markdowns/Medium.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Medium Questions (397)
1+
# Medium Questions (398)
22

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

@@ -350,6 +350,7 @@
350350
| 2545 | [Sort the Students by Their Kth Score](<https://leetcode.com/problems/sort-the-students-by-their-kth-score>) | Medium | | [solution](<_2545. Sort the Students by Their Kth Score.md>) | java, py | Jun 24, 2024 |
351351
| 2579 | [Count Total Number of Colored Cells](<https://leetcode.com/problems/count-total-number-of-colored-cells>) | Medium | Daily | [solution](<_2579. Count Total Number of Colored Cells.md>) | py | Mar 05, 2025 |
352352
| 2583 | [Kth Largest Sum in a Binary Tree](<https://leetcode.com/problems/kth-largest-sum-in-a-binary-tree>) | Medium | Daily | [solution](<_2583. Kth Largest Sum in a Binary Tree.md>) | py | Oct 22, 2024 |
353+
| 2594 | [Minimum Time to Repair Cars](<https://leetcode.com/problems/minimum-time-to-repair-cars>) | Medium | Daily | [solution](<_2594. Minimum Time to Repair Cars.md>) | py | Mar 16, 2025 |
353354
| 2599 | [Make the Prefix Sum Non-negative](<https://leetcode.com/problems/make-the-prefix-sum-non-negative>) | Medium | Weekly Premium | [solution](<_2599. Make the Prefix Sum Non-negative.md>) | py | Feb 10, 2025 |
354355
| 2610 | [Convert an Array Into a 2D Array With Conditions](<https://leetcode.com/problems/convert-an-array-into-a-2d-array-with-conditions>) | Medium | | [solution](<_2610. Convert an Array Into a 2D Array With Conditions.md>) | py | Jun 07, 2024 |
355356
| 2623 | [Memoize](<https://leetcode.com/problems/memoize>) | Medium | | [solution](<_2623. Memoize.md>) | js | Jul 09, 2024 |

markdowns/Questions_By_Code_Length.md

+1
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,7 @@ Calculations are based on the code files's byte sizes.
520520
| 342 | [Power of Four](<https://leetcode.com/problems/power-of-four>) | Easy | | [solution](<_342. Power of Four.md>) | py | Mar 04, 2025 |
521521
| 3248 | [Snake in Matrix](<https://leetcode.com/problems/snake-in-matrix>) | Easy | | [solution](<_3248. Snake in Matrix.md>) | py | Aug 12, 2024 |
522522
| 3168 | Weekly Contest 400 - q1 - [Minimum Number of Chairs in a Waiting Room](<https://leetcode.com/problems/minimum-number-of-chairs-in-a-waiting-room>) | Easy | Contest | [solution](<_3168. Minimum Number of Chairs in a Waiting Room.md>) | py | Jul 07, 2024 |
523+
| 2594 | [Minimum Time to Repair Cars](<https://leetcode.com/problems/minimum-time-to-repair-cars>) | Medium | Daily | [solution](<_2594. Minimum Time to Repair Cars.md>) | py | Mar 16, 2025 |
523524
| 3228 | Weekly Contest 407 - q3 - [Maximum Number of Operations to Move Ones to the End](<https://leetcode.com/problems/maximum-number-of-operations-to-move-ones-to-the-end>) | Medium | Contest | [solution](<_3228. Maximum Number of Operations to Move Ones to the End.md>) | py | Jul 21, 2024 |
524525
| 196 | [Delete Duplicate Emails](<https://leetcode.com/problems/delete-duplicate-emails>) | Easy | | [solution](<_196. Delete Duplicate Emails.md>) | py, sql | Jun 07, 2024 |
525526
| 2529 | [Maximum Count of Positive Integer and Negative Integer](<https://leetcode.com/problems/maximum-count-of-positive-integer-and-negative-integer>) | Easy | Daily | [solution](<_2529. Maximum Count of Positive Integer and Negative Integer.md>) | py | Mar 12, 2025 |

markdowns/Questions_By_Recent.md

+1
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+
| 2594 | [Minimum Time to Repair Cars](<https://leetcode.com/problems/minimum-time-to-repair-cars>) | Medium | Daily | [solution](<_2594. Minimum Time to Repair Cars.md>) | py | Mar 16, 2025 |
910
| 266 | [Palindrome Permutation](<https://leetcode.com/problems/palindrome-permutation>) | Easy | Weekly Premium | [solution](<_266. Palindrome Permutation.md>) | py | Mar 15, 2025 |
1011
| 2529 | [Maximum Count of Positive Integer and Negative Integer](<https://leetcode.com/problems/maximum-count-of-positive-integer-and-negative-integer>) | Easy | Daily | [solution](<_2529. Maximum Count of Positive Integer and Negative Integer.md>) | py | Mar 12, 2025 |
1112
| 42 | [Trapping Rain Water](<https://leetcode.com/problems/trapping-rain-water>) | Hard | N150 | [solution](<_42. Trapping Rain Water.md>) | py | Mar 11, 2025 |

0 commit comments

Comments
 (0)