Skip to content

Commit 5d59083

Browse files
committed
Alternate versions of daily + did the weekly premium (again)
1 parent 6fd3268 commit 5d59083

20 files changed

+437
-279
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,9 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
344344
| 1791 | [Find Center of Star Graph](<https://leetcode.com/problems/find-center-of-star-graph>) | Easy | Daily | [solution](<markdowns/_1791. Find Center of Star Graph.md>) | c, cpp, java, py |
345345
| 1804 | [Implement Trie II (Prefix Tree)](<https://leetcode.com/problems/implement-trie-ii-prefix-tree>) | Medium | | [solution](<markdowns/_1804. Implement Trie II (Prefix Tree).md>) | py |
346346
| 1822 | [Sign of the Product of an Array](<https://leetcode.com/problems/sign-of-the-product-of-an-array>) | Easy | | [solution](<markdowns/_1822. Sign of the Product of an Array.md>) | c |
347-
| 1823 | [Find the Winner of the Circular Game](<https://leetcode.com/problems/find-the-winner-of-the-circular-game>) | Medium | Daily | [solution](<markdowns/_1823. Find the Winner of the Circular Game.md>) | py |
347+
| 1823 | [Find the Winner of the Circular Game](<https://leetcode.com/problems/find-the-winner-of-the-circular-game>) | Medium | Daily | [solution](<markdowns/_1823. Find the Winner of the Circular Game.md>) | c, cpp, java, js, py |
348348
| 1833 | [Maximum Ice Cream Bars](<https://leetcode.com/problems/maximum-ice-cream-bars>) | Medium | | [solution](<markdowns/_1833. Maximum Ice Cream Bars.md>) | c, java, py |
349-
| 1836 | [Remove Duplicates From an Unsorted Linked List](<https://leetcode.com/problems/remove-duplicates-from-an-unsorted-linked-list>) | Medium | | [solution](<markdowns/_1836. Remove Duplicates From an Unsorted Linked List.md>) | py |
349+
| 1836 | [Remove Duplicates From an Unsorted Linked List](<https://leetcode.com/problems/remove-duplicates-from-an-unsorted-linked-list>) | Medium | Weekly Premium | [solution](<markdowns/_1836. Remove Duplicates From an Unsorted Linked List.md>) | java, py |
350350
| 1844 | [Replace All Digits with Characters](<https://leetcode.com/problems/replace-all-digits-with-characters>) | Easy | | [solution](<markdowns/_1844. Replace All Digits with Characters.md>) | py |
351351
| 1852 | [Distinct Numbers in Each Subarray](<https://leetcode.com/problems/distinct-numbers-in-each-subarray>) | Medium | | [solution](<markdowns/_1852. Distinct Numbers in Each Subarray.md>) | java |
352352
| 1858 | [Longest Word With All Prefixes](<https://leetcode.com/problems/longest-word-with-all-prefixes>) | Medium | | [solution](<markdowns/_1858. Longest Word With All Prefixes.md>) | py |

markdowns/Daily_Questions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +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-
| 1823 | [Find the Winner of the Circular Game](<https://leetcode.com/problems/find-the-winner-of-the-circular-game>) | Medium | Daily | [solution](<_1823. Find the Winner of the Circular Game.md>) | py | Jul 07, 2024 |
9+
| 1823 | [Find the Winner of the Circular Game](<https://leetcode.com/problems/find-the-winner-of-the-circular-game>) | Medium | Daily | [solution](<_1823. Find the Winner of the Circular Game.md>) | c, cpp, java, js, py | Jul 07, 2024 |
1010
| 1518 | [Water Bottles](<https://leetcode.com/problems/water-bottles>) | Easy | Daily | [solution](<_1518. Water Bottles.md>) | c, cpp, cs, java, js, py, ts | Jul 06, 2024 |
1111
| 2582 | [Pass the Pillow](<https://leetcode.com/problems/pass-the-pillow>) | Easy | Daily | [solution](<_2582. Pass the Pillow.md>) | c, cpp, cs, java, js, py | Jul 05, 2024 |
1212
| 2058 | [Find the Minimum and Maximum Number of Nodes Between Critical Points](<https://leetcode.com/problems/find-the-minimum-and-maximum-number-of-nodes-between-critical-points>) | Medium | Daily | [solution](<_2058. Find the Minimum and Maximum Number of Nodes Between Critical Points.md>) | cpp, java, py | Jul 04, 2024 |

markdowns/Questions_By_Code_Length.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ Calculations are based on the code files's byte sizes.
9292
| 665 | [Non-decreasing Array](<https://leetcode.com/problems/non-decreasing-array>) | Medium | | [solution](<_665. Non-decreasing Array.md>) | java, py | Jun 13, 2024 |
9393
| 703 | [Kth Largest Element in a Stream](<https://leetcode.com/problems/kth-largest-element-in-a-stream>) | Easy | N150 | [solution](<_703. Kth Largest Element in a Stream.md>) | py | Jul 04, 2024 |
9494
| 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 21, 2024 |
95+
| 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 04, 2024 |
9596
| 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 01, 2024 |
9697
| 1980 | [Find Unique Binary String](<https://leetcode.com/problems/find-unique-binary-string>) | Medium | | [solution](<_1980. Find Unique Binary String.md>) | c, py | Jun 26, 2024 |
9798
| 974 | [Subarray Sums Divisible by K](<https://leetcode.com/problems/subarray-sums-divisible-by-k>) | Medium | Daily | [solution](<_974. Subarray Sums Divisible by K.md>) | java, py | Jun 09, 2024 |
@@ -154,6 +155,7 @@ Calculations are based on the code files's byte sizes.
154155
| 1490 | [Clone N-ary Tree](<https://leetcode.com/problems/clone-n-ary-tree>) | Medium | | [solution](<_1490. Clone N-ary Tree.md>) | java, py | Jun 01, 2024 |
155156
| 2149 | [Rearrange Array Elements by Sign](<https://leetcode.com/problems/rearrange-array-elements-by-sign>) | Medium | | [solution](<_2149. Rearrange Array Elements by Sign.md>) | c, py | Jun 09, 2024 |
156157
| 1730 | [Shortest Path to Get Food](<https://leetcode.com/problems/shortest-path-to-get-food>) | Medium | | [solution](<_1730. Shortest Path to Get Food.md>) | py | Jun 26, 2024 |
158+
| 1823 | [Find the Winner of the Circular Game](<https://leetcode.com/problems/find-the-winner-of-the-circular-game>) | Medium | Daily | [solution](<_1823. Find the Winner of the Circular Game.md>) | c, cpp, java, js, py | Jul 07, 2024 |
157159
| 2405 | [Optimal Partition of String](<https://leetcode.com/problems/optimal-partition-of-string>) | Medium | | [solution](<_2405. Optimal Partition of String.md>) | py | Jun 23, 2024 |
158160
| 1254 | [Number of Closed Islands](<https://leetcode.com/problems/number-of-closed-islands>) | Medium | | [solution](<_1254. Number of Closed Islands.md>) | py | Jun 26, 2024 |
159161
| 211 | [Design Add and Search Words Data Structure](<https://leetcode.com/problems/design-add-and-search-words-data-structure>) | Medium | B75, N150 | [solution](<_211. Design Add and Search Words Data Structure.md>) | py | Jun 27, 2024 |
@@ -277,7 +279,6 @@ Calculations are based on the code files's byte sizes.
277279
| 110 | [Balanced Binary Tree](<https://leetcode.com/problems/balanced-binary-tree>) | Easy | N150 | [solution](<_110. Balanced Binary Tree.md>) | py | Jul 04, 2024 |
278280
| 100 | [Same Tree](<https://leetcode.com/problems/same-tree>) | Easy | B75, N150 | [solution](<_100. Same Tree.md>) | py | Jul 03, 2024 |
279281
| 3211 | [Generate Binary Strings Without Adjacent Zeros](<https://leetcode.com/problems/generate-binary-strings-without-adjacent-zeros>) - q2 | Medium | Contest | [solution](<_3211. Generate Binary Strings Without Adjacent Zeros.md>) | py | Jul 06, 2024 |
280-
| 1836 | [Remove Duplicates From an Unsorted Linked List](<https://leetcode.com/problems/remove-duplicates-from-an-unsorted-linked-list>) | Medium | | [solution](<_1836. Remove Duplicates From an Unsorted Linked List.md>) | py | Jul 04, 2024 |
281282
| 1249 | [Minimum Remove to Make Valid Parentheses](<https://leetcode.com/problems/minimum-remove-to-make-valid-parentheses>) | Medium | | [solution](<_1249. Minimum Remove to Make Valid Parentheses.md>) | py | Jun 10, 2024 |
282283
| 2482 | [Difference Between Ones and Zeros in Row and Column](<https://leetcode.com/problems/difference-between-ones-and-zeros-in-row-and-column>) | Medium | | [solution](<_2482. Difference Between Ones and Zeros in Row and Column.md>) | py | Jun 07, 2024 |
283284
| 74 | [Search a 2D Matrix](<https://leetcode.com/problems/search-a-2d-matrix>) | Medium | N150 | [solution](<_74. Search a 2D Matrix.md>) | py | Jun 14, 2024 |
@@ -312,7 +313,6 @@ Calculations are based on the code files's byte sizes.
312313
| 235 | [Lowest Common Ancestor of a Binary Search Tree](<https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree>) | Medium | B75, N150 | [solution](<_235. Lowest Common Ancestor of a Binary Search Tree.md>) | py | Jul 04, 2024 |
313314
| 1317 | [Convert Integer to the Sum of Two No-Zero Integers](<https://leetcode.com/problems/convert-integer-to-the-sum-of-two-no-zero-integers>) | Easy | | [solution](<_1317. Convert Integer to the Sum of Two No-Zero Integers.md>) | c | Jun 04, 2024 |
314315
| 1046 | [Last Stone Weight](<https://leetcode.com/problems/last-stone-weight>) | Easy | N150 | [solution](<_1046. Last Stone Weight.md>) | py | Jun 03, 2024 |
315-
| 1823 | [Find the Winner of the Circular Game](<https://leetcode.com/problems/find-the-winner-of-the-circular-game>) | Medium | Daily | [solution](<_1823. Find the Winner of the Circular Game.md>) | py | Jul 07, 2024 |
316316
| 2942 | [Find Words Containing Character](<https://leetcode.com/problems/find-words-containing-character>) | Easy | | [solution](<_2942. Find Words Containing Character.md>) | c | Jun 03, 2024 |
317317
| 654 | [Maximum Binary Tree](<https://leetcode.com/problems/maximum-binary-tree>) | Medium | | [solution](<_654. Maximum Binary Tree.md>) | py | Jun 11, 2024 |
318318
| 287 | [Find the Duplicate Number](<https://leetcode.com/problems/find-the-duplicate-number>) | Medium | N150 | [solution](<_287. Find the Duplicate Number.md>) | c | Jun 25, 2024 |

0 commit comments

Comments
 (0)