Skip to content

Commit 2e60d06

Browse files
Zanger67/leetcodeZanger67/leetcode
Zanger67/leetcode
authored and
Zanger67/leetcode
committed
Updated markdown files
1 parent fa04321 commit 2e60d06

9 files changed

+58
-20
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/)** (633 solved)
1+
# **[LeetCode Records](https://leetcode.com/u/Zanger/)** (634 solved)
22

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

@@ -379,6 +379,7 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
379379
| 1268 | [Search Suggestions System](<https://leetcode.com/problems/search-suggestions-system>) | Medium | | [solution](<markdowns/_1268. Search Suggestions System.md>) | py |
380380
| 1282 | [Group the People Given the Group Size They Belong To](<https://leetcode.com/problems/group-the-people-given-the-group-size-they-belong-to>) | Medium | | [solution](<markdowns/_1282. Group the People Given the Group Size They Belong To.md>) | py |
381381
| 1284 | [Minimum Number of Flips to Convert Binary Matrix to Zero Matrix](<https://leetcode.com/problems/minimum-number-of-flips-to-convert-binary-matrix-to-zero-matrix>) | Hard | | [solution](<markdowns/_1284. Minimum Number of Flips to Convert Binary Matrix to Zero Matrix.md>) | py |
382+
| 1295 | [Find Numbers with Even Number of Digits](<https://leetcode.com/problems/find-numbers-with-even-number-of-digits>) | Easy | Daily | [solution](<markdowns/_1295. Find Numbers with Even Number of Digits.md>) | py |
382383
| 1302 | [Deepest Leaves Sum](<https://leetcode.com/problems/deepest-leaves-sum>) | Medium | | [solution](<markdowns/_1302. Deepest Leaves Sum.md>) | c, js, py |
383384
| 1305 | [All Elements in Two Binary Search Trees](<https://leetcode.com/problems/all-elements-in-two-binary-search-trees>) | Medium | | [solution](<markdowns/_1305. All Elements in Two Binary Search Trees.md>) | java |
384385
| 1315 | [Sum of Nodes with Even-Valued Grandparent](<https://leetcode.com/problems/sum-of-nodes-with-even-valued-grandparent>) | Medium | | [solution](<markdowns/_1315. Sum of Nodes with Even-Valued Grandparent.md>) | py |

markdowns/Daily_Questions.md

+15-14
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@
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

77
### April 2025
8-
| Su | Mo | Tu | We | Th | Fr | Sa |
9-
|-------------------------------------------------------------------:|---------------------------------------------------------:|---------------------------------------------------------------------------------:|-------------------------------------------------------:|-----:|---------------------------------------------:|-----:|
10-
| | | 1 | [2](<_2873. Maximum Value of an Ordered Triplet I.md>) | 3 | 4 | 5 |
11-
| 6 | [7](<_416. Partition Equal Subset Sum.md>) | [8](<_3396. Minimum Number of Operations to Make Elements in Array Distinct.md>) | 9 | 10 | [11](<_2843. Count Symmetric Integers.md>) | 12 |
12-
| [13](<_1922. Count Good Numbers.md>) | [14](<_1534. Count Good Triplets.md>) | 15 | 16 | 17 | [18](<_38. Count and Say.md>) | 19 |
13-
| [20](<_781. Rabbits in Forest.md>) | [21](<_2145. Count the Hidden Sequences.md>) | 22 | [23](<_1399. Count Largest Group.md>) | 24 | 25 | 26 |
14-
| [27](<_3392. Count Subarrays of Length Three With a Condition.md>) | [28](<_2302. Count Subarrays With Score Less Than K.md>) | 29 | 30 | | | |
8+
| Su | Mo | Tu | We | Th | Fr | Sa |
9+
|-------------------------------------------------------------------:|---------------------------------------------------------:|---------------------------------------------------------------------------------:|----------------------------------------------------------:|-----:|---------------------------------------------:|-----:|
10+
| | | 1 | [2](<_2873. Maximum Value of an Ordered Triplet I.md>) | 3 | 4 | 5 |
11+
| 6 | [7](<_416. Partition Equal Subset Sum.md>) | [8](<_3396. Minimum Number of Operations to Make Elements in Array Distinct.md>) | 9 | 10 | [11](<_2843. Count Symmetric Integers.md>) | 12 |
12+
| [13](<_1922. Count Good Numbers.md>) | [14](<_1534. Count Good Triplets.md>) | 15 | 16 | 17 | [18](<_38. Count and Say.md>) | 19 |
13+
| [20](<_781. Rabbits in Forest.md>) | [21](<_2145. Count the Hidden Sequences.md>) | 22 | [23](<_1399. Count Largest Group.md>) | 24 | 25 | 26 |
14+
| [27](<_3392. Count Subarrays of Length Three With a Condition.md>) | [28](<_2302. Count Subarrays With Score Less Than K.md>) | 29 | [30](<_1295. Find Numbers with Even Number of Digits.md>) | | | |
1515

1616

1717

1818
| # | Title | Level | Cats | Solution | Languages | Date Complete |
1919
|-----:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:---------------|:----------------------------------------------------------------------------------------------------|:-----------------------------|:----------------|
20+
| 1295 | [Find Numbers with Even Number of Digits](<https://leetcode.com/problems/find-numbers-with-even-number-of-digits>) | Easy | Daily | [solution](<_1295. Find Numbers with Even Number of Digits.md>) | py | Apr 30, 2025 |
2021
| 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 |
2122
| 3392 | [Count Subarrays of Length Three With a Condition](<https://leetcode.com/problems/count-subarrays-of-length-three-with-a-condition>) | Easy | Daily | [solution](<_3392. Count Subarrays of Length Three With a Condition.md>) | py | Apr 27, 2025 |
2223
| 1399 | [Count Largest Group](<https://leetcode.com/problems/count-largest-group>) | Easy | Daily | [solution](<_1399. Count Largest Group.md>) | py | Apr 23, 2025 |
@@ -285,11 +286,11 @@ Dates are for the date I completed the question so due to the my time zone and h
285286

286287

287288
### April 2025
288-
| Su | Mo | Tu | We | Th | Fr | Sa |
289-
|-------------------------------------------------------------------:|---------------------------------------------------------:|---------------------------------------------------------------------------------:|-------------------------------------------------------:|-----:|---------------------------------------------:|-----:|
290-
| | | 1 | [2](<_2873. Maximum Value of an Ordered Triplet I.md>) | 3 | 4 | 5 |
291-
| 6 | [7](<_416. Partition Equal Subset Sum.md>) | [8](<_3396. Minimum Number of Operations to Make Elements in Array Distinct.md>) | 9 | 10 | [11](<_2843. Count Symmetric Integers.md>) | 12 |
292-
| [13](<_1922. Count Good Numbers.md>) | [14](<_1534. Count Good Triplets.md>) | 15 | 16 | 17 | [18](<_38. Count and Say.md>) | 19 |
293-
| [20](<_781. Rabbits in Forest.md>) | [21](<_2145. Count the Hidden Sequences.md>) | 22 | [23](<_1399. Count Largest Group.md>) | 24 | 25 | 26 |
294-
| [27](<_3392. Count Subarrays of Length Three With a Condition.md>) | [28](<_2302. Count Subarrays With Score Less Than K.md>) | 29 | 30 | | | |
289+
| Su | Mo | Tu | We | Th | Fr | Sa |
290+
|-------------------------------------------------------------------:|---------------------------------------------------------:|---------------------------------------------------------------------------------:|----------------------------------------------------------:|-----:|---------------------------------------------:|-----:|
291+
| | | 1 | [2](<_2873. Maximum Value of an Ordered Triplet I.md>) | 3 | 4 | 5 |
292+
| 6 | [7](<_416. Partition Equal Subset Sum.md>) | [8](<_3396. Minimum Number of Operations to Make Elements in Array Distinct.md>) | 9 | 10 | [11](<_2843. Count Symmetric Integers.md>) | 12 |
293+
| [13](<_1922. Count Good Numbers.md>) | [14](<_1534. Count Good Triplets.md>) | 15 | 16 | 17 | [18](<_38. Count and Say.md>) | 19 |
294+
| [20](<_781. Rabbits in Forest.md>) | [21](<_2145. Count the Hidden Sequences.md>) | 22 | [23](<_1399. Count Largest Group.md>) | 24 | 25 | 26 |
295+
| [27](<_3392. Count Subarrays of Length Three With a Condition.md>) | [28](<_2302. Count Subarrays With Score Less Than K.md>) | 29 | [30](<_1295. Find Numbers with Even Number of Digits.md>) | | | |
295296

markdowns/Easy.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Easy Questions (185)
1+
# Easy Questions (186)
22

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

@@ -101,6 +101,7 @@
101101
| 1207 | [Unique Number of Occurrences](<https://leetcode.com/problems/unique-number-of-occurrences>) | Easy | | [solution](<_1207. Unique Number of Occurrences.md>) | py | Sep 25, 2024 |
102102
| 1232 | [Check If It Is a Straight Line](<https://leetcode.com/problems/check-if-it-is-a-straight-line>) | Easy | | [solution](<_1232. Check If It Is a Straight Line.md>) | py | Sep 25, 2024 |
103103
| 1252 | [Cells with Odd Values in a Matrix](<https://leetcode.com/problems/cells-with-odd-values-in-a-matrix>) | Easy | | [solution](<_1252. Cells with Odd Values in a Matrix.md>) | c | Jun 04, 2024 |
104+
| 1295 | [Find Numbers with Even Number of Digits](<https://leetcode.com/problems/find-numbers-with-even-number-of-digits>) | Easy | Daily | [solution](<_1295. Find Numbers with Even Number of Digits.md>) | py | Apr 30, 2025 |
104105
| 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 |
105106
| 1351 | [Count Negative Numbers in a Sorted Matrix](<https://leetcode.com/problems/count-negative-numbers-in-a-sorted-matrix>) | Easy | | [solution](<_1351. Count Negative Numbers in a Sorted Matrix.md>) | java, py | Jun 01, 2024 |
106107
| 1380 | [Lucky Numbers in a Matrix](<https://leetcode.com/problems/lucky-numbers-in-a-matrix>) | Easy | Daily | [solution](<_1380. Lucky Numbers in a Matrix.md>) | js, py | Jul 19, 2024 |

markdowns/Questions_By_Code_Length.md

+1
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,7 @@ Calculations are based on the code files's byte sizes.
627627
| 796 | [Rotate String](<https://leetcode.com/problems/rotate-string>) | Easy | | [solution](<_796. Rotate String.md>) | py | Nov 04, 2024 |
628628
| 2894 | [Divisible and Non-divisible Sums Difference](<https://leetcode.com/problems/divisible-and-non-divisible-sums-difference>) | Easy | | [solution](<_2894. Divisible and Non-divisible Sums Difference.md>) | py | May 22, 2024 |
629629
| 619 | [Biggest Single Number](<https://leetcode.com/problems/biggest-single-number>) | Easy | | [solution](<_619. Biggest Single Number.md>) | sql | May 22, 2024 |
630+
| 1295 | [Find Numbers with Even Number of Digits](<https://leetcode.com/problems/find-numbers-with-even-number-of-digits>) | Easy | Daily | [solution](<_1295. Find Numbers with Even Number of Digits.md>) | py | Apr 30, 2025 |
630631
| 266 | [Palindrome Permutation](<https://leetcode.com/problems/palindrome-permutation>) | Easy | Weekly Premium | [solution](<_266. Palindrome Permutation.md>) | py | Mar 15, 2025 |
631632
| 183 | [Customers Who Never Order](<https://leetcode.com/problems/customers-who-never-order>) | Easy | | [solution](<_183. Customers Who Never Order.md>) | sql | May 22, 2024 |
632633
| 3210 | Weekly Contest 405 - q1 - [Find the Encrypted String](<https://leetcode.com/problems/find-the-encrypted-string>) | Easy | Contest | [solution](<_3210. Find the Encrypted String.md>) | py | Jul 07, 2024 |

0 commit comments

Comments
 (0)