Skip to content

Commit bbed1a1

Browse files
Zanger67/leetcodeZanger67/leetcode
authored andcommitted
Updated markdown files
1 parent bb5061e commit bbed1a1

File tree

527 files changed

+793
-560
lines changed

Some content is hidden

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

527 files changed

+793
-560
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Large diffs are not rendered by default.

markdowns/Daily_Questions.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,22 @@
44

55
Dates are for the date I completed the question so due to the my time zone and how it lines up with UTC, it may be off by a day.
66

7-
### August 2025
8-
| Su | Mo | Tu | We | Th | Fr | Sa |
9-
|---------------------------------------------------------------------:|-----------------------------------:|-------------------------------------------------------------:|--------------------------------:|-----:|------------------------------------------------------------:|-----------------------------:|
10-
| | | | | | [1](<_118. Pascal's Triangle.md>) | 2 |
11-
| 3 | 4 | 5 | 6 | 7 | 8 | [9](<_231. Power of Two.md>) |
12-
| 10 | 11 | 12 | [13](<_326. Power of Three.md>) | 14 | [15](<_342. Power of Four.md>) | 16 |
13-
| 17 | 18 | [19](<_2348. Number of Zero-Filled Subarrays.md>) | 20 | 21 | [22](<_3195. Find the Minimum Area to Cover All Ones I.md>) | 23 |
14-
| [24](<_1493. Longest Subarray of 1's After Deleting One Element.md>) | [25](<_498. Diagonal Traverse.md>) | [26](<_3000. Maximum Area of Longest Diagonal Rectangle.md>) | 27 | 28 | [29](<_3021. Alice and Bob Playing Flower Game.md>) | 30 |
15-
| 31 | | | | | | |
7+
### September 2025
8+
| Su | Mo | Tu | We | Th | Fr | Sa |
9+
|-----:|-----:|-----------------------------------------------------------:|-----:|-----:|-----:|-----:|
10+
| | 1 | [2](<_3025. Find the Number of Ways to Place People I.md>) | 3 | 4 | 5 | 6 |
11+
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
12+
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
13+
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
14+
| 28 | 29 | 30 | | | | |
1615

1716

1817

1918
| # | Title | Level | Cats | Solution | Languages | Date Complete |
2019
|-----:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:---------------|:----------------------------------------------------------------------------------------------------|:-----------------------------|:----------------|
20+
| 3025 | [Find the Number of Ways to Place People I](<https://leetcode.com/problems/find-the-number-of-ways-to-place-people-i>) | Medium | Daily | [solution](<_3025. Find the Number of Ways to Place People I.md>) | py | Sep 02, 2025 |
21+
| 37 | [Sudoku Solver](<https://leetcode.com/problems/sudoku-solver>) | Hard | Daily | [solution](<_37. Sudoku Solver.md>) | py | Aug 31, 2025 |
22+
| 36 | [Valid Sudoku](<https://leetcode.com/problems/valid-sudoku>) | Medium | Daily, N150 | [solution](<_36. Valid Sudoku.md>) | py | Aug 30, 2025 |
2123
| 3021 | [Alice and Bob Playing Flower Game](<https://leetcode.com/problems/alice-and-bob-playing-flower-game>) | Medium | Daily | [solution](<_3021. Alice and Bob Playing Flower Game.md>) | go, py | Aug 29, 2025 |
2224
| 3000 | [Maximum Area of Longest Diagonal Rectangle](<https://leetcode.com/problems/maximum-area-of-longest-diagonal-rectangle>) | Easy | Daily | [solution](<_3000. Maximum Area of Longest Diagonal Rectangle.md>) | py | Aug 26, 2025 |
2325
| 498 | [Diagonal Traverse](<https://leetcode.com/problems/diagonal-traverse>) | Medium | Daily | [solution](<_498. Diagonal Traverse.md>) | go, py | Aug 25, 2025 |
@@ -353,6 +355,16 @@ Dates are for the date I completed the question so due to the my time zone and h
353355
| 3 | 4 | 5 | 6 | 7 | 8 | [9](<_231. Power of Two.md>) |
354356
| 10 | 11 | 12 | [13](<_326. Power of Three.md>) | 14 | [15](<_342. Power of Four.md>) | 16 |
355357
| 17 | 18 | [19](<_2348. Number of Zero-Filled Subarrays.md>) | 20 | 21 | [22](<_3195. Find the Minimum Area to Cover All Ones I.md>) | 23 |
356-
| [24](<_1493. Longest Subarray of 1's After Deleting One Element.md>) | [25](<_498. Diagonal Traverse.md>) | [26](<_3000. Maximum Area of Longest Diagonal Rectangle.md>) | 27 | 28 | [29](<_3021. Alice and Bob Playing Flower Game.md>) | 30 |
357-
| 31 | | | | | | |
358+
| [24](<_1493. Longest Subarray of 1's After Deleting One Element.md>) | [25](<_498. Diagonal Traverse.md>) | [26](<_3000. Maximum Area of Longest Diagonal Rectangle.md>) | 27 | 28 | [29](<_3021. Alice and Bob Playing Flower Game.md>) | [30](<_36. Valid Sudoku.md>) |
359+
| [31](<_37. Sudoku Solver.md>) | | | | | | |
360+
361+
362+
### September 2025
363+
| Su | Mo | Tu | We | Th | Fr | Sa |
364+
|-----:|-----:|-----------------------------------------------------------:|-----:|-----:|-----:|-----:|
365+
| | 1 | [2](<_3025. Find the Number of Ways to Place People I.md>) | 3 | 4 | 5 | 6 |
366+
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
367+
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
368+
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
369+
| 28 | 29 | 30 | | | | |
358370

markdowns/Hard.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Hard Questions (42)
1+
# Hard Questions (44)
22

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

@@ -8,6 +8,7 @@
88
|-----:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:---------------|:----------------------------------------------------------------------------------------|:------------|:----------------|
99
| 23 | [Merge k Sorted Lists](<https://leetcode.com/problems/merge-k-sorted-lists>) | Hard | B75, N150 | [solution](<_23. Merge k Sorted Lists.md>) | py | Jun 17, 2024 |
1010
| 25 | [Reverse Nodes in k-Group](<https://leetcode.com/problems/reverse-nodes-in-k-group>) | Hard | N150 | [solution](<_25. Reverse Nodes in k-Group.md>) | c | Jun 07, 2024 |
11+
| 37 | [Sudoku Solver](<https://leetcode.com/problems/sudoku-solver>) | Hard | Daily | [solution](<_37. Sudoku Solver.md>) | py | Sep 01, 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 |
1213
| 84 | [Largest Rectangle in Histogram](<https://leetcode.com/problems/largest-rectangle-in-histogram>) | Hard | N150 | [solution](<_84. Largest Rectangle in Histogram.md>) | py | Jun 11, 2024 |
1314
| 124 | [Binary Tree Maximum Path Sum](<https://leetcode.com/problems/binary-tree-maximum-path-sum>) | Hard | B75, N150 | [solution](<_124. Binary Tree Maximum Path Sum.md>) | py | Jul 04, 2024 |
@@ -36,6 +37,7 @@
3637
| 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](<_1368. Minimum Cost to Make at Least One Valid Path in a Grid.md>) | py | Jan 18, 2025 |
3738
| 1568 | [Minimum Number of Days to Disconnect Island](<https://leetcode.com/problems/minimum-number-of-days-to-disconnect-island>) | Hard | Daily | [solution](<_1568. Minimum Number of Days to Disconnect Island.md>) | py | Aug 11, 2024 |
3839
| 1579 | [Remove Max Number of Edges to Keep Graph Fully Traversable](<https://leetcode.com/problems/remove-max-number-of-edges-to-keep-graph-fully-traversable>) | Hard | Daily | [solution](<_1579. Remove Max Number of Edges to Keep Graph Fully Traversable.md>) | py | Jun 30, 2024 |
40+
| 1782 | [Count Pairs Of Nodes](<https://leetcode.com/problems/count-pairs-of-nodes>) | Hard | | [solution](<_1782. Count Pairs Of Nodes.md>) | py | Sep 01, 2025 |
3941
| 2045 | [Second Minimum Time to Reach Destination](<https://leetcode.com/problems/second-minimum-time-to-reach-destination>) | Hard | Daily | [solution](<_2045. Second Minimum Time to Reach Destination.md>) | py | Jul 28, 2024 |
4042
| 2258 | [Escape the Spreading Fire](<https://leetcode.com/problems/escape-the-spreading-fire>) | Hard | | [solution](<_2258. Escape the Spreading Fire.md>) | py | Jun 15, 2024 |
4143
| 2302 | [Count Subarrays With Score Less Than K](<https://leetcode.com/problems/count-subarrays-with-score-less-than-k>) | Hard | Daily | [solution](<_2302. Count Subarrays With Score Less Than K.md>) | py | Apr 28, 2025 |

markdowns/Medium.md

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

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

@@ -16,7 +16,7 @@
1616
| 22 | [Generate Parentheses](<https://leetcode.com/problems/generate-parentheses>) | Medium | N150 | [solution](<_22. Generate Parentheses.md>) | py | Jun 13, 2024 |
1717
| 24 | [Swap Nodes in Pairs](<https://leetcode.com/problems/swap-nodes-in-pairs>) | Medium | | [solution](<_24. Swap Nodes in Pairs.md>) | c | Jun 07, 2024 |
1818
| 33 | [Search in Rotated Sorted Array](<https://leetcode.com/problems/search-in-rotated-sorted-array>) | Medium | B75, N150 | [solution](<_33. Search in Rotated Sorted Array.md>) | py | Dec 17, 2024 |
19-
| 36 | [Valid Sudoku](<https://leetcode.com/problems/valid-sudoku>) | Medium | N150 | [solution](<_36. Valid Sudoku.md>) | py | Jun 13, 2024 |
19+
| 36 | [Valid Sudoku](<https://leetcode.com/problems/valid-sudoku>) | Medium | Daily, N150 | [solution](<_36. Valid Sudoku.md>) | py | Jun 13, 2024 |
2020
| 38 | [Count and Say](<https://leetcode.com/problems/count-and-say>) | Medium | Daily | [solution](<_38. Count and Say.md>) | py | Apr 18, 2025 |
2121
| 39 | [Combination Sum](<https://leetcode.com/problems/combination-sum>) | Medium | B75, N150 | [solution](<_39. Combination Sum.md>) | py | Jul 16, 2024 |
2222
| 40 | [Combination Sum II](<https://leetcode.com/problems/combination-sum-ii>) | Medium | Daily, N150 | [solution](<_40. Combination Sum II.md>) | py | Aug 13, 2024 |
@@ -389,6 +389,7 @@
389389
| 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 |
390390
| 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 |
391391
| 3021 | [Alice and Bob Playing Flower Game](<https://leetcode.com/problems/alice-and-bob-playing-flower-game>) | Medium | Daily | [solution](<_3021. Alice and Bob Playing Flower Game.md>) | go, py | Aug 29, 2025 |
392+
| 3025 | [Find the Number of Ways to Place People I](<https://leetcode.com/problems/find-the-number-of-ways-to-place-people-i>) | Medium | Daily | [solution](<_3025. Find the Number of Ways to Place People I.md>) | py | Sep 02, 2025 |
392393
| 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 |
393394
| 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 |
394395
| 3066 | [Minimum Operations to Exceed Threshold Value II](<https://leetcode.com/problems/minimum-operations-to-exceed-threshold-value-ii>) | Medium | Daily | [solution](<_3066. Minimum Operations to Exceed Threshold Value II.md>) | py | Feb 13, 2025 |

0 commit comments

Comments
 (0)