Skip to content

Commit 39ba7db

Browse files
committed
update readme
1 parent 835d35e commit 39ba7db

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/Question List.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88
2125-number-of-laser-beams-in-a-bank python medium
99
2870-minimum-number-of-operations-to-make-array-empty python medium
1010
0300-longest-increasing-subsequence python medium
11-
0446-arithmetic-slices-ii-subsequence python hard
11+
0446-arithmetic-slices-ii-subsequence python hard
12+
0938-range-sum-of-bst python easy
13+
1428-leftmost-column-with-at-least-a-one python medium

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ The solutions are organized as follows:
247247
| 0905 | [Sort Array By Parity](https://leetcode.com/problems/sort-array-by-parity/) | [Python](./0905-sort-array-by-parity/0905-sort-array-by-parity.py) | [Easy](./0905-sort-array-by-parity/README.md) |
248248
| 0920 | [Number of Music Playlists](https://leetcode.com/problems/number-of-music-playlists/) | [Python](./0920-number-of-music-playlists/0920-number-of-music-playlists.py) | [Hard](./0920-number-of-music-playlists/README.md) |
249249
| 0935 | [Knight Dialer](https://leetcode.com/problems/knight-dialer/) | [Python](./0935-knight-dialer/0935-knight-dialer.py) | [Medium](./0935-knight-dialer/README.md) |
250+
| 0938 | [Range Sum of BST](https://leetcode.com/problems/range-sum-of-bst/) | [Python](./0938-range-sum-of-bst/0938-range-sum-of-bst.py) | [Easy](./0938-range-sum-of-bst/README.md) |
250251
| 0973 | [K Closest Points to Origin](https://leetcode.com/problems/k-closest-points-to-origin/) | [Python](./0973-k-closest-points-to-origin/0973-k-closest-points-to-origin.py) | [Medium](./0973-k-closest-points-to-origin/README.md) |
251252
| 0977 | [Squares of a Sorted Array](https://leetcode.com/problems/squares-of-a-sorted-array/) | [C++](./0977-squares-of-a-sorted-array/0977-squares-of-a-sorted-array.cpp) | [Easy](./0977-squares-of-a-sorted-array/README.md) |
252253
| 0981 | [Time Based Key-Value Store](https://leetcode.com/problems/time-based-key-value-store/) | [Python](./0981-time-based-key-value-store/0981-time-based-key-value-store.py) | [Medium](./0981-time-based-key-value-store/README.md) |
@@ -287,6 +288,7 @@ The solutions are organized as follows:
287288
| 1422 | [Maximum Score After Splitting a String](https://leetcode.com/problems/maximum-score-after-splitting-a-string/) | [Python](./1422-maximum-score-after-splitting-a-string/1422-maximum-score-after-splitting-a-string.py) | [Easy](./1422-maximum-score-after-splitting-a-string/README.md) |
288289
| 1424 | [Diagonal Traverse II](https://leetcode.com/problems/diagonal-traverse-ii/) | [Python](./1424-diagonal-traverse-ii/1424-diagonal-traverse-ii.py) | [Medium](./1424-diagonal-traverse-ii/README.md) |
289290
| 1425 | [Constrained Subsequence Sum](https://leetcode.com/problems/constrained-subsequence-sum/) | [Python](./1425-constrained-subsequence-sum/1425-constrained-subsequence-sum.py) | [Hard](./1425-constrained-subsequence-sum/README.md) |
291+
| 1428 | [Leftmost Column with at Least a One](https://leetcode.com/problems/leftmost-column-with-at-least-a-one/) | [Python](./1428-leftmost-column-with-at-least-a-one/1428-leftmost-column-with-at-least-a-one.py) | [Medium](./1428-leftmost-column-with-at-least-a-one/README.md) |
290292
| 1436 | [Destination City](https://leetcode.com/problems/destination-city/) | [Python](./1436-destination-city/1436-destination-city.py) | [Easy](./1436-destination-city/README.md) |
291293
| 1441 | [Build an Array With Stack Operations](https://leetcode.com/problems/build-an-array-with-stack-operations/) | [Python](./1441-build-an-array-with-stack-operations/1441-build-an-array-with-stack-operations.py) | [Easy](./1441-build-an-array-with-stack-operations/README.md) |
292294
| 1458 | [Max Dot Product of Two Subsequences](https://leetcode.com/problems/max-dot-product-of-two-subsequences/) | [Python](./1458-max-dot-product-of-two-subsequences/1458-max-dot-product-of-two-subsequences.py) | [Hard](./1458-max-dot-product-of-two-subsequences/README.md) |

0 commit comments

Comments
 (0)