Skip to content

Commit 6eab721

Browse files
Zanger67/leetcodeZanger67/leetcode
authored andcommitted
Updated markdown files
1 parent 5634819 commit 6eab721

15 files changed

+68
-16
lines changed

README.md

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

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

@@ -201,6 +201,7 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
201201
| 540 | [Single Element in a Sorted Array](<https://leetcode.com/problems/single-element-in-a-sorted-array>) | Medium | | [solution](<markdowns/_540. Single Element in a Sorted Array.md>) | py |
202202
| 542 | [01 Matrix](<https://leetcode.com/problems/01-matrix>) | Medium | | [solution](<markdowns/_542. 01 Matrix.md>) | py |
203203
| 543 | [Diameter of Binary Tree](<https://leetcode.com/problems/diameter-of-binary-tree>) | Easy | N150 | [solution](<markdowns/_543. Diameter of Binary Tree.md>) | c, java, py |
204+
| 559 | [Maximum Depth of N-ary Tree](<https://leetcode.com/problems/maximum-depth-of-n-ary-tree>) | Easy | | [solution](<markdowns/_559. Maximum Depth of N-ary Tree.md>) | py |
204205
| 565 | [Array Nesting](<https://leetcode.com/problems/array-nesting>) | Medium | | [solution](<markdowns/_565. Array Nesting.md>) | py |
205206
| 567 | [Permutation in String](<https://leetcode.com/problems/permutation-in-string>) | Medium | N150 | [solution](<markdowns/_567. Permutation in String.md>) | py |
206207
| 572 | [Subtree of Another Tree](<https://leetcode.com/problems/subtree-of-another-tree>) | Easy | B75, N150 | [solution](<markdowns/_572. Subtree of Another Tree.md>) | py |
@@ -518,7 +519,7 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
518519
| 2979 | [Most Expensive Item That Can Not Be Bought](<https://leetcode.com/problems/most-expensive-item-that-can-not-be-bought>) | Medium | | [solution](<markdowns/_2979. Most Expensive Item That Can Not Be Bought.md>) | c, cpp, go, java, js, kt, py, rs, swift, ts |
519520
| 2997 | [Minimum Number of Operations to Make Array XOR Equal to K](<https://leetcode.com/problems/minimum-number-of-operations-to-make-array-xor-equal-to-k>) | Medium | | [solution](<markdowns/_2997. Minimum Number of Operations to Make Array XOR Equal to K.md>) | java, py |
520521
| 3016 | [Minimum Number of Pushes to Type Word II](<https://leetcode.com/problems/minimum-number-of-pushes-to-type-word-ii>) | Medium | Daily | [solution](<markdowns/_3016. Minimum Number of Pushes to Type Word II.md>) | py |
521-
| 3043 | [Find the Length of the Longest Common Prefix](<https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix>) | Medium | | [solution](<markdowns/_3043. Find the Length of the Longest Common Prefix.md>) | py |
522+
| 3043 | [Find the Length of the Longest Common Prefix](<https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix>) | Medium | Daily | [solution](<markdowns/_3043. Find the Length of the Longest Common Prefix.md>) | py |
522523
| 3045 | [Count Prefix and Suffix Pairs II](<https://leetcode.com/problems/count-prefix-and-suffix-pairs-ii>) | Hard | | [solution](<markdowns/_3045. Count Prefix and Suffix Pairs II.md>) | py |
523524
| 3064 | [Guess the Number Using Bitwise Questions I](<https://leetcode.com/problems/guess-the-number-using-bitwise-questions-i>) | Medium | | [solution](<markdowns/_3064. Guess the Number Using Bitwise Questions I.md>) | c, py |
524525
| 3074 | [Apple Redistribution into Boxes](<https://leetcode.com/problems/apple-redistribution-into-boxes>) | Easy | | [solution](<markdowns/_3074. Apple Redistribution into Boxes.md>) | py |

markdowns/Daily_Questions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Dates are for the date I completed the question so due to the my time zone and h
66

77
| # | Title | Level | Cats | Solution | Languages | Date Complete |
88
|-----:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:------------|:----------------------------------------------------------------------------------------------------|:-----------------------------|:----------------|
9+
| 3043 | [Find the Length of the Longest Common Prefix](<https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix>) | Medium | Daily | [solution](<_3043. Find the Length of the Longest Common Prefix.md>) | py | Sep 24, 2024 |
910
| 1684 | [Count the Number of Consistent Strings](<https://leetcode.com/problems/count-the-number-of-consistent-strings>) | Easy | Daily | [solution](<_1684. Count the Number of Consistent Strings.md>) | c, py | Sep 12, 2024 |
1011
| 2807 | [Insert Greatest Common Divisors in Linked List](<https://leetcode.com/problems/insert-greatest-common-divisors-in-linked-list>) | Medium | Daily | [solution](<_2807. Insert Greatest Common Divisors in Linked List.md>) | py | Sep 10, 2024 |
1112
| 725 | [Split Linked List in Parts](<https://leetcode.com/problems/split-linked-list-in-parts>) | Medium | Daily | [solution](<_725. Split Linked List in Parts.md>) | py | Sep 08, 2024 |

markdowns/Easy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Easy Questions (153)
1+
# Easy Questions (154)
22

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

@@ -56,6 +56,7 @@
5656
| 476 | [Number Complement](<https://leetcode.com/problems/number-complement>) | Easy | Daily | [solution](<_476. Number Complement.md>) | py | Aug 22, 2024 |
5757
| 509 | [Fibonacci Number](<https://leetcode.com/problems/fibonacci-number>) | Easy | | [solution](<_509. Fibonacci Number.md>) | c | Jun 17, 2024 |
5858
| 543 | [Diameter of Binary Tree](<https://leetcode.com/problems/diameter-of-binary-tree>) | Easy | N150 | [solution](<_543. Diameter of Binary Tree.md>) | c, java, py | Jun 03, 2024 |
59+
| 559 | [Maximum Depth of N-ary Tree](<https://leetcode.com/problems/maximum-depth-of-n-ary-tree>) | Easy | | [solution](<_559. Maximum Depth of N-ary Tree.md>) | py | Sep 24, 2024 |
5960
| 572 | [Subtree of Another Tree](<https://leetcode.com/problems/subtree-of-another-tree>) | Easy | B75, N150 | [solution](<_572. Subtree of Another Tree.md>) | py | Jun 03, 2024 |
6061
| 577 | [Employee Bonus](<https://leetcode.com/problems/employee-bonus>) | Easy | | [solution](<_577. Employee Bonus.md>) | sql | May 22, 2024 |
6162
| 584 | [Find Customer Referee](<https://leetcode.com/problems/find-customer-referee>) | Easy | | [solution](<_584. Find Customer Referee.md>) | sql | May 22, 2024 |

markdowns/Medium.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@
315315
| 2979 | [Most Expensive Item That Can Not Be Bought](<https://leetcode.com/problems/most-expensive-item-that-can-not-be-bought>) | Medium | | [solution](<_2979. Most Expensive Item That Can Not Be Bought.md>) | c, cpp, go, java, js, kt, py, rs, swift, ts | Jul 29, 2024 |
316316
| 2997 | [Minimum Number of Operations to Make Array XOR Equal to K](<https://leetcode.com/problems/minimum-number-of-operations-to-make-array-xor-equal-to-k>) | Medium | | [solution](<_2997. Minimum Number of Operations to Make Array XOR Equal to K.md>) | java, py | Jun 12, 2024 |
317317
| 3016 | [Minimum Number of Pushes to Type Word II](<https://leetcode.com/problems/minimum-number-of-pushes-to-type-word-ii>) | Medium | Daily | [solution](<_3016. Minimum Number of Pushes to Type Word II.md>) | py | Aug 06, 2024 |
318-
| 3043 | [Find the Length of the Longest Common Prefix](<https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix>) | Medium | | [solution](<_3043. Find the Length of the Longest Common Prefix.md>) | py | Jun 28, 2024 |
318+
| 3043 | [Find the Length of the Longest Common Prefix](<https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix>) | Medium | Daily | [solution](<_3043. Find the Length of the Longest Common Prefix.md>) | py | Jun 28, 2024 |
319319
| 3064 | [Guess the Number Using Bitwise Questions I](<https://leetcode.com/problems/guess-the-number-using-bitwise-questions-i>) | Medium | | [solution](<_3064. Guess the Number Using Bitwise Questions I.md>) | c, py | Jun 06, 2024 |
320320
| 3106 | [Lexicographically Smallest String After Operations With Constraint](<https://leetcode.com/problems/lexicographically-smallest-string-after-operations-with-constraint>) | Medium | | [solution](<_3106. Lexicographically Smallest String After Operations With Constraint.md>) | py | Jun 29, 2024 |
321321
| 3111 | [Minimum Rectangles to Cover Points](<https://leetcode.com/problems/minimum-rectangles-to-cover-points>) | Medium | | [solution](<_3111. Minimum Rectangles to Cover Points.md>) | java, py | Jul 21, 2024 |

markdowns/Questions_By_Code_Length.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ Calculations are based on the code files's byte sizes.
371371
| 22 | [Generate Parentheses](<https://leetcode.com/problems/generate-parentheses>) | Medium | N150 | [solution](<_22. Generate Parentheses.md>) | py | Jun 13, 2024 |
372372
| 1551 | [Minimum Operations to Make Array Equal](<https://leetcode.com/problems/minimum-operations-to-make-array-equal>) | Medium | | [solution](<_1551. Minimum Operations to Make Array Equal.md>) | c, java, js, kt, py, rb, rs | Jun 13, 2024 |
373373
| 14 | [Longest Common Prefix](<https://leetcode.com/problems/longest-common-prefix>) | Easy | | [solution](<_14. Longest Common Prefix.md>) | java | May 22, 2024 |
374-
| 3043 | [Find the Length of the Longest Common Prefix](<https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix>) | Medium | | [solution](<_3043. Find the Length of the Longest Common Prefix.md>) | py | Jun 28, 2024 |
374+
| 3043 | [Find the Length of the Longest Common Prefix](<https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix>) | Medium | Daily | [solution](<_3043. Find the Length of the Longest Common Prefix.md>) | py | Jun 28, 2024 |
375375
| 1381 | [Design a Stack With Increment Operation](<https://leetcode.com/problems/design-a-stack-with-increment-operation>) | Medium | | [solution](<_1381. Design a Stack With Increment Operation.md>) | py | Jul 06, 2024 |
376376
| 1460 | [Make Two Arrays Equal by Reversing Subarrays](<https://leetcode.com/problems/make-two-arrays-equal-by-reversing-subarrays>) | Easy | Daily | [solution](<_1460. Make Two Arrays Equal by Reversing Subarrays.md>) | c, py | Jun 04, 2024 |
377377
| 322 | [Coin Change](<https://leetcode.com/problems/coin-change>) | Medium | B75, N150 | [solution](<_322. Coin Change.md>) | py | Sep 24, 2024 |
@@ -442,6 +442,7 @@ Calculations are based on the code files's byte sizes.
442442
| 1436 | [Destination City](<https://leetcode.com/problems/destination-city>) | Easy | | [solution](<_1436. Destination City.md>) | java | Jun 01, 2024 |
443443
| 330 | [Patching Array](<https://leetcode.com/problems/patching-array>) | Hard | Daily | [solution](<_330. Patching Array.md>) | py | Jun 16, 2024 |
444444
| 1884 | [Egg Drop With 2 Eggs and N Floors](<https://leetcode.com/problems/egg-drop-with-2-eggs-and-n-floors>) | Medium | | [solution](<_1884. Egg Drop With 2 Eggs and N Floors.md>) | c, java, js | Jul 11, 2024 |
445+
| 559 | [Maximum Depth of N-ary Tree](<https://leetcode.com/problems/maximum-depth-of-n-ary-tree>) | Easy | | [solution](<_559. Maximum Depth of N-ary Tree.md>) | py | Sep 24, 2024 |
445446
| 3248 | [Snake in Matrix](<https://leetcode.com/problems/snake-in-matrix>) | Easy | | [solution](<_3248. Snake in Matrix.md>) | py | Aug 12, 2024 |
446447
| 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 |
447448
| 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 |

0 commit comments

Comments
 (0)