You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- This readme was generated using [WikiLeet](<https://github.com/Zanger67/WikiLeet>) -->
4
4
@@ -507,6 +507,7 @@ This repo is a collection of my LeetCode solutions, primarily written in Python,
507
507
| 1910 |[Remove All Occurrences of a Substring](<https://leetcode.com/problems/remove-all-occurrences-of-a-substring>)| Medium | Daily |[solution](<markdowns/_1910. Remove All Occurrences of a Substring.md>)| py |
508
508
| 1922 |[Count Good Numbers](<https://leetcode.com/problems/count-good-numbers>)| Medium | Daily |[solution](<markdowns/_1922. Count Good Numbers.md>)| py |
509
509
| 1929 |[Concatenation of Array](<https://leetcode.com/problems/concatenation-of-array>)| Easy ||[solution](<markdowns/_1929. Concatenation of Array.md>)| c, java, py |
510
+
| 1935 |[Maximum Number of Words You Can Type](<https://leetcode.com/problems/maximum-number-of-words-you-can-type>)| Easy | Daily |[solution](<markdowns/_1935. Maximum Number of Words You Can Type.md>)| py |
510
511
| 1940 |[Longest Common Subsequence Between Sorted Arrays](<https://leetcode.com/problems/longest-common-subsequence-between-sorted-arrays>)| Medium | Weekly Premium |[solution](<markdowns/_1940. Longest Common Subsequence Between Sorted Arrays.md>)| java, py |
511
512
| 1945 |[Sum of Digits of String After Convert](<https://leetcode.com/problems/sum-of-digits-of-string-after-convert>)| Easy | Daily |[solution](<markdowns/_1945. Sum of Digits of String After Convert.md>)| py |
512
513
| 1957 |[Delete Characters to Make Fancy String](<https://leetcode.com/problems/delete-characters-to-make-fancy-string>)| Easy | Daily |[solution](<markdowns/_1957. Delete Characters to Make Fancy String.md>)| py |
||[1](<_1792. Maximum Average Pass Ratio.md>)|[2](<_3025. Find the Number of Ways to Place People I.md>)|[3](<_3027. Find the Number of Ways to Place People II.md>)|[4](<_3516. Find Closest Person.md>)| 5 | 6 |
11
11
|[7](<_1304. Find N Unique Integers Sum up to Zero.md>)|[8](<_1317. Convert Integer to the Sum of Two No-Zero Integers.md>)| 9 | 10 |[11](<_2785. Sort Vowels in a String.md>)|[12](<_3227. Vowels Game in a String.md>)|[13](<_3541. Find Most Frequent Vowel and Consonant.md>)|
12
-
| 14 |15 | 16 | 17 | 18 | 19 | 20 |
12
+
| 14 |[15](<_1935. Maximum Number of Words You Can Type.md>)| 16 | 17 | 18 | 19 | 20 |
13
13
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
14
14
| 28 | 29 | 30 |||||
15
15
16
16
17
17
18
18
| # | Title | Level | Cats | Solution | Languages | Date Complete |
| 1935 |[Maximum Number of Words You Can Type](<https://leetcode.com/problems/maximum-number-of-words-you-can-type>)| Easy | Daily |[solution](<_1935. Maximum Number of Words You Can Type.md>)| py | Sep 15, 2025 |
20
21
| 3541 |[Find Most Frequent Vowel and Consonant](<https://leetcode.com/problems/find-most-frequent-vowel-and-consonant>)| Easy | Daily |[solution](<_3541. Find Most Frequent Vowel and Consonant.md>)| py | Sep 13, 2025 |
21
22
| 3227 | Weekly Contest 407 - q2 - [Vowels Game in a String](<https://leetcode.com/problems/vowels-game-in-a-string>)| Medium | Contest, Daily |[solution](<_3227. Vowels Game in a String.md>)| py | Sep 12, 2025 |
22
23
| 2785 |[Sort Vowels in a String](<https://leetcode.com/problems/sort-vowels-in-a-string>)| Medium | Daily |[solution](<_2785. Sort Vowels in a String.md>)| py | Sep 11, 2025 |
@@ -372,7 +373,7 @@ Dates are for the date I completed the question so due to the my time zone and h
||[1](<_1792. Maximum Average Pass Ratio.md>)|[2](<_3025. Find the Number of Ways to Place People I.md>)|[3](<_3027. Find the Number of Ways to Place People II.md>)|[4](<_3516. Find Closest Person.md>)| 5 | 6 |
374
375
|[7](<_1304. Find N Unique Integers Sum up to Zero.md>)|[8](<_1317. Convert Integer to the Sum of Two No-Zero Integers.md>)| 9 | 10 |[11](<_2785. Sort Vowels in a String.md>)|[12](<_3227. Vowels Game in a String.md>)|[13](<_3541. Find Most Frequent Vowel and Consonant.md>)|
375
-
| 14 |15 | 16 | 17 | 18 | 19 | 20 |
376
+
| 14 |[15](<_1935. Maximum Number of Words You Can Type.md>)| 16 | 17 | 18 | 19 | 20 |
Copy file name to clipboardExpand all lines: markdowns/Easy.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Easy Questions (190)
1
+
# Easy Questions (191)
2
2
3
3
*[Back to top](<../README.md>)*
4
4
@@ -135,6 +135,7 @@
135
135
| 1844 |[Replace All Digits with Characters](<https://leetcode.com/problems/replace-all-digits-with-characters>)| Easy ||[solution](<_1844. Replace All Digits with Characters.md>)| py | Jun 29, 2024 |
136
136
| 1909 |[Remove One Element to Make the Array Strictly Increasing](<https://leetcode.com/problems/remove-one-element-to-make-the-array-strictly-increasing>)| Easy ||[solution](<_1909. Remove One Element to Make the Array Strictly Increasing.md>)| c | Jun 17, 2024 |
137
137
| 1929 |[Concatenation of Array](<https://leetcode.com/problems/concatenation-of-array>)| Easy ||[solution](<_1929. Concatenation of Array.md>)| c, java, py | Jun 03, 2024 |
138
+
| 1935 |[Maximum Number of Words You Can Type](<https://leetcode.com/problems/maximum-number-of-words-you-can-type>)| Easy | Daily |[solution](<_1935. Maximum Number of Words You Can Type.md>)| py | Sep 15, 2025 |
138
139
| 1945 |[Sum of Digits of String After Convert](<https://leetcode.com/problems/sum-of-digits-of-string-after-convert>)| Easy | Daily |[solution](<_1945. Sum of Digits of String After Convert.md>)| py | Sep 03, 2024 |
139
140
| 1957 |[Delete Characters to Make Fancy String](<https://leetcode.com/problems/delete-characters-to-make-fancy-string>)| Easy | Daily |[solution](<_1957. Delete Characters to Make Fancy String.md>)| py | Nov 04, 2024 |
140
141
| 2011 |[Final Value of Variable After Performing Operations](<https://leetcode.com/problems/final-value-of-variable-after-performing-operations>)| Easy ||[solution](<_2011. Final Value of Variable After Performing Operations.md>)| c | Jun 03, 2024 |
Copy file name to clipboardExpand all lines: markdowns/Questions_By_Code_Length.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -634,6 +634,7 @@ Calculations are based on the code files's byte sizes.
634
634
| 28 |[Find the Index of the First Occurrence in a String](<https://leetcode.com/problems/find-the-index-of-the-first-occurrence-in-a-string>)| Easy ||[solution](<_28. Find the Index of the First Occurrence in a String.md>)| py | May 22, 2024 |
635
635
| 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 |
| 1935 |[Maximum Number of Words You Can Type](<https://leetcode.com/problems/maximum-number-of-words-you-can-type>)| Easy | Daily |[solution](<_1935. Maximum Number of Words You Can Type.md>)| py | Sep 15, 2025 |
| 176 |[Second Highest Salary](<https://leetcode.com/problems/second-highest-salary>)| Medium ||[solution](<_176. Second Highest Salary.md>)| sql | May 22, 2024 |
639
640
| 122 |[Best Time to Buy and Sell Stock II](<https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii>)| Medium ||[solution](<_122. Best Time to Buy and Sell Stock II.md>)| py | Aug 27, 2025 |
| 1935 |[Maximum Number of Words You Can Type](<https://leetcode.com/problems/maximum-number-of-words-you-can-type>)| Easy | Daily |[solution](<_1935. Maximum Number of Words You Can Type.md>)| py | Sep 15, 2025 |
9
10
| 3541 |[Find Most Frequent Vowel and Consonant](<https://leetcode.com/problems/find-most-frequent-vowel-and-consonant>)| Easy | Daily |[solution](<_3541. Find Most Frequent Vowel and Consonant.md>)| py | Sep 13, 2025 |
10
11
| 2785 |[Sort Vowels in a String](<https://leetcode.com/problems/sort-vowels-in-a-string>)| Medium | Daily |[solution](<_2785. Sort Vowels in a String.md>)| py | Sep 11, 2025 |
11
12
| 1304 |[Find N Unique Integers Sum up to Zero](<https://leetcode.com/problems/find-n-unique-integers-sum-up-to-zero>)| Easy | Daily |[solution](<_1304. Find N Unique Integers Sum up to Zero.md>)| py | Sep 07, 2025 |
0 commit comments