Skip to content

Commit 1a85301

Browse files
Zanger67/leetcodeZanger67/leetcode
authored andcommitted
Updated markdown files
1 parent 598b95b commit 1a85301

File tree

495 files changed

+594
-530
lines changed

Some content is hidden

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

495 files changed

+594
-530
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Large diffs are not rendered by default.

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+
| 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 |
910
| 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 |
1011
| 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 |
1112
| 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 |

markdowns/Easy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
| 1550 | [Three Consecutive Odds](<https://leetcode.com/problems/three-consecutive-odds>) | Easy | Daily | [solution](<_1550. Three Consecutive Odds.md>) | c, py | Jul 01, 2024 |
103103
| 1598 | [Crawler Log Folder](<https://leetcode.com/problems/crawler-log-folder>) | Easy | Daily | [solution](<_1598. Crawler Log Folder.md>) | c, js | Jul 10, 2024 |
104104
| 1636 | [Sort Array by Increasing Frequency](<https://leetcode.com/problems/sort-array-by-increasing-frequency>) | Easy | Daily | [solution](<_1636. Sort Array by Increasing Frequency.md>) | py | Jul 23, 2024 |
105-
| 1684 | [Count the Number of Consistent Strings](<https://leetcode.com/problems/count-the-number-of-consistent-strings>) | Easy | | [solution](<_1684. Count the Number of Consistent Strings.md>) | c, py | Jun 06, 2024 |
105+
| 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 | Jun 06, 2024 |
106106
| 1700 | [Number of Students Unable to Eat Lunch](<https://leetcode.com/problems/number-of-students-unable-to-eat-lunch>) | Easy | | [solution](<_1700. Number of Students Unable to Eat Lunch.md>) | py | Jun 02, 2024 |
107107
| 1736 | [Latest Time by Replacing Hidden Digits](<https://leetcode.com/problems/latest-time-by-replacing-hidden-digits>) | Easy | | [solution](<_1736. Latest Time by Replacing Hidden Digits.md>) | c | Jun 03, 2024 |
108108
| 1748 | [Sum of Unique Elements](<https://leetcode.com/problems/sum-of-unique-elements>) | Easy | | [solution](<_1748. Sum of Unique Elements.md>) | c | Jun 06, 2024 |

markdowns/Medium.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Medium Questions (333)
1+
# Medium Questions (334)
22

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

@@ -72,6 +72,7 @@
7272
| 287 | [Find the Duplicate Number](<https://leetcode.com/problems/find-the-duplicate-number>) | Medium | N150 | [solution](<_287. Find the Duplicate Number.md>) | c | Jun 26, 2024 |
7373
| 314 | [Binary Tree Vertical Order Traversal](<https://leetcode.com/problems/binary-tree-vertical-order-traversal>) | Medium | | [solution](<_314. Binary Tree Vertical Order Traversal.md>) | py | Jun 12, 2024 |
7474
| 320 | [Generalized Abbreviation](<https://leetcode.com/problems/generalized-abbreviation>) | Medium | Weekly Premium | [solution](<_320. Generalized Abbreviation.md>) | py | Aug 22, 2024 |
75+
| 322 | [Coin Change](<https://leetcode.com/problems/coin-change>) | Medium | B75, N150 | [solution](<_322. Coin Change.md>) | py | Sep 24, 2024 |
7576
| 328 | [Odd Even Linked List](<https://leetcode.com/problems/odd-even-linked-list>) | Medium | | [solution](<_328. Odd Even Linked List.md>) | py | Jun 22, 2024 |
7677
| 339 | [Nested List Weight Sum](<https://leetcode.com/problems/nested-list-weight-sum>) | Medium | | [solution](<_339. Nested List Weight Sum.md>) | c, py | Jul 02, 2024 |
7778
| 341 | [Flatten Nested List Iterator](<https://leetcode.com/problems/flatten-nested-list-iterator>) | Medium | | [solution](<_341. Flatten Nested List Iterator.md>) | java | Jul 02, 2024 |
@@ -252,7 +253,7 @@
252253
| 1833 | [Maximum Ice Cream Bars](<https://leetcode.com/problems/maximum-ice-cream-bars>) | Medium | | [solution](<_1833. Maximum Ice Cream Bars.md>) | c, java, py | Jun 23, 2024 |
253254
| 1836 | [Remove Duplicates From an Unsorted Linked List](<https://leetcode.com/problems/remove-duplicates-from-an-unsorted-linked-list>) | Medium | Weekly Premium | [solution](<_1836. Remove Duplicates From an Unsorted Linked List.md>) | java, py | Jul 08, 2024 |
254255
| 1852 | [Distinct Numbers in Each Subarray](<https://leetcode.com/problems/distinct-numbers-in-each-subarray>) | Medium | | [solution](<_1852. Distinct Numbers in Each Subarray.md>) | java | Jun 27, 2024 |
255-
| 1858 | [Longest Word With All Prefixes](<https://leetcode.com/problems/longest-word-with-all-prefixes>) | Medium | | [solution](<_1858. Longest Word With All Prefixes.md>) | py | Jun 29, 2024 |
256+
| 1858 | [Longest Word With All Prefixes](<https://leetcode.com/problems/longest-word-with-all-prefixes>) | Medium | Weekly Premium | [solution](<_1858. Longest Word With All Prefixes.md>) | py | Jun 29, 2024 |
256257
| 1874 | [Minimize Product Sum of Two Arrays](<https://leetcode.com/problems/minimize-product-sum-of-two-arrays>) | Medium | | [solution](<_1874. Minimize Product Sum of Two Arrays.md>) | c, java | Jun 22, 2024 |
257258
| 1877 | [Minimize Maximum Pair Sum in Array](<https://leetcode.com/problems/minimize-maximum-pair-sum-in-array>) | Medium | | [solution](<_1877. Minimize Maximum Pair Sum in Array.md>) | py | Jun 23, 2024 |
258259
| 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 |

markdowns/Questions_By_Code_Length.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Calculations are based on the code files's byte sizes.
233233
| 1166 | [Design File System](<https://leetcode.com/problems/design-file-system>) | Medium | | [solution](<_1166. Design File System.md>) | py | Jun 28, 2024 |
234234
| 3186 | Weekly Contest 402 - q3 - [Maximum Total Damage With Spell Casting](<https://leetcode.com/problems/maximum-total-damage-with-spell-casting>) | Medium | Contest | [solution](<_3186. Maximum Total Damage With Spell Casting.md>) | py | Jul 07, 2024 |
235235
| 1522 | [Diameter of N-Ary Tree](<https://leetcode.com/problems/diameter-of-n-ary-tree>) | Medium | | [solution](<_1522. Diameter of N-Ary Tree.md>) | py | Jul 03, 2024 |
236-
| 1684 | [Count the Number of Consistent Strings](<https://leetcode.com/problems/count-the-number-of-consistent-strings>) | Easy | | [solution](<_1684. Count the Number of Consistent Strings.md>) | c, py | Jun 06, 2024 |
236+
| 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 | Jun 06, 2024 |
237237
| 744 | [Find Smallest Letter Greater Than Target](<https://leetcode.com/problems/find-smallest-letter-greater-than-target>) | Easy | | [solution](<_744. Find Smallest Letter Greater Than Target.md>) | java, py | Jun 01, 2024 |
238238
| 77 | [Combinations](<https://leetcode.com/problems/combinations>) | Medium | | [solution](<_77. Combinations.md>) | py | Jun 07, 2024 |
239239
| 125 | [Valid Palindrome](<https://leetcode.com/problems/valid-palindrome>) | Easy | B75, N150 | [solution](<_125. Valid Palindrome.md>) | c, py | Jun 07, 2024 |
@@ -309,7 +309,7 @@ Calculations are based on the code files's byte sizes.
309309
| 3174 | Biweekly Contest 132 - q1 - [Clear Digits](<https://leetcode.com/problems/clear-digits>) | Easy | Contest | [solution](<_3174. Clear Digits.md>) | py | Jul 07, 2024 |
310310
| 1472 | [Design Browser History](<https://leetcode.com/problems/design-browser-history>) | Medium | | [solution](<_1472. Design Browser History.md>) | py | Jul 06, 2024 |
311311
| 720 | [Longest Word in Dictionary](<https://leetcode.com/problems/longest-word-in-dictionary>) | Medium | | [solution](<_720. Longest Word in Dictionary.md>) | py | Jun 27, 2024 |
312-
| 1858 | [Longest Word With All Prefixes](<https://leetcode.com/problems/longest-word-with-all-prefixes>) | Medium | | [solution](<_1858. Longest Word With All Prefixes.md>) | py | Jun 29, 2024 |
312+
| 1858 | [Longest Word With All Prefixes](<https://leetcode.com/problems/longest-word-with-all-prefixes>) | Medium | Weekly Premium | [solution](<_1858. Longest Word With All Prefixes.md>) | py | Jun 29, 2024 |
313313
| 49 | [Group Anagrams](<https://leetcode.com/problems/group-anagrams>) | Medium | B75, N150 | [solution](<_49. Group Anagrams.md>) | py | Jun 13, 2024 |
314314
| 1455 | [Check If a Word Occurs As a Prefix of Any Word in a Sentence](<https://leetcode.com/problems/check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence>) | Easy | | [solution](<_1455. Check If a Word Occurs As a Prefix of Any Word in a Sentence.md>) | py | Jun 01, 2024 |
315315
| 1929 | [Concatenation of Array](<https://leetcode.com/problems/concatenation-of-array>) | Easy | | [solution](<_1929. Concatenation of Array.md>) | c, java, py | Jun 03, 2024 |
@@ -374,6 +374,7 @@ Calculations are based on the code files's byte sizes.
374374
| 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 |
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 |
377+
| 322 | [Coin Change](<https://leetcode.com/problems/coin-change>) | Medium | B75, N150 | [solution](<_322. Coin Change.md>) | py | Sep 24, 2024 |
377378
| 653 | [Two Sum IV - Input is a BST](<https://leetcode.com/problems/two-sum-iv-input-is-a-bst>) | Easy | | [solution](<_653. Two Sum IV - Input is a BST.md>) | py | Jul 31, 2024 |
378379
| 1669 | [Merge In Between Linked Lists](<https://leetcode.com/problems/merge-in-between-linked-lists>) | Medium | | [solution](<_1669. Merge In Between Linked Lists.md>) | c | Jun 24, 2024 |
379380
| 1002 | [Find Common Characters](<https://leetcode.com/problems/find-common-characters>) | Easy | | [solution](<_1002. Find Common Characters.md>) | py | Jun 08, 2024 |

0 commit comments

Comments
 (0)