|
1 |
| -# [LeetCode](https://leetcode.com/problemset/algorithms/)  [](./LICENSE.md)  |
| 1 | +# [LeetCode](https://leetcode.com/problemset/algorithms/)  [](./LICENSE.md)  |
2 | 2 |
|
3 |
| -Up to date (2016-06-21), there are `345` Algorithms / `13` Database / `4` Shell questions on [LeetCode Online Judge](https://leetcode.com/). |
| 3 | +Up to date (2016-06-22), there are `346` Algorithms / `13` Database / `4` Shell questions on [LeetCode Online Judge](https://leetcode.com/). |
4 | 4 | The number of questions is increasing recently.
|
5 |
| -Here is the classification of all `362` questions. |
| 5 | +Here is the classification of all `363` questions. |
6 | 6 | For more questions and solutions, you can see my [LintCode](https://github.com/kamyu104/LintCode) repository.
|
7 | 7 | I'll keep updating for full summary and better solutions. Stay tuned for updates.
|
8 | 8 | (Notes: "📖" means you need to subscribe to [LeetCode premium membership](https://leetcode.com/subscribe/) for the access to premium questions. )
|
@@ -338,6 +338,7 @@ I'll keep updating for full summary and better solutions. Stay tuned for updates
|
338 | 338 | 300| [Longest Increasing Subsequence](https://leetcode.com/problems/longest-increasing-subsequence/) | [C++](./C++/longest-increasing-subsequence.cpp) [Python](./Python/longest-increasing-subsequence.py) | _O(nlogn)_ | _O(n)_ | Medium | CTCI, LintCode | Binary Search, DP|
|
339 | 339 | 302| [Smallest Rectangle Enclosing Black Pixels](https://leetcode.com/problems/smallest-rectangle-enclosing-black-pixels/)| [C++](./C++/smallest-rectangle-enclosing-black-pixels.cpp) [Python](./Python/smallest-rectangle-enclosing-black-pixels.py) | _O(nlogn)_ | _O(1)_ | Medium | 📖 |
|
340 | 340 | 354| [Russian Doll Envelopes](https://leetcode.com/problems/russian-doll-envelopes/) | [C++](./C++/russian-doll-envelopes.cpp) [Python](./Python/russian-doll-envelopes.py) | _O(nlogn)_ | _O(1)_ | Hard |||
|
| 341 | +363| [Max Sum of Rectangle No Larger Than K](https://leetcode.com/problems/max-sum-of-sub-matrix-no-larger-than-k/) | [C++](./C++/max-sum-of-sub-matrix-no-larger-than-k.cpp) [Python](./Python/max-sum-of-sub-matrix-no-larger-than-k.py) | _O(min(m, n)^2 * max(m, n) * logn(max(m, n)))_ | _O(max(m, n))_ | Medium ||| |
341 | 342 |
|
342 | 343 | ## Binary Search Tree
|
343 | 344 | # | Title | Solution | Time | Space | Difficulty | Tag | Note
|
|
0 commit comments