|
1 |
| -# [LeetCode](https://leetcode.com/problemset/algorithms/)  [](./LICENSE.md)  |
| 1 | +# [LeetCode](https://leetcode.com/problemset/algorithms/)  [](./LICENSE.md)  |
2 | 2 |
|
3 |
| -Up to date (2015-12-27), there are `305` Algorithms / `13` Database / `4` Shell questions on [LeetCode Online Judge](https://leetcode.com/). |
| 3 | +Up to date (2015-12-29), there are `306` 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 `322` questions. |
| 5 | +Here is the classification of all `323` 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. )
|
@@ -208,6 +208,7 @@ I'll keep updating for full summary and better solutions. Stay tuned for updates
|
208 | 208 | 299| [Bulls and Cow](https://leetcode.com/problems/bulls-and-cow/) | [C++](./C++/bulls-and-cow.cpp) [Python](./Python/bulls-and-cow.py) | _O(n)_ | _O(1)_ | Easy |||
|
209 | 209 | 305| [Number of Islands II](https://leetcode.com/problems/number-of-islands-ii/) | [C++](./C++/number-of-islands-ii.cpp) [Python](./Python/number-of-islands-ii.py) | _O(k)_ | _O(k)_| Hard | LintCode, 📖 | Union Find
|
210 | 210 | 314| [Binary Tree Vertical Order Traversal](https://leetcode.com/problems/binary-tree-vertical-order-traversal/) | [C++](./C++/binary-tree-vertical-order-traversal.cpp) [Python](./Python/binary-tree-vertical-order-traversal.py) | _O(n)_ | _O(n)_| Medium | 📖 | BFS
|
| 211 | +323| [Number of Connected Components in an Undirected Graph](https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph/) | [C++](./C++/number-of-connected-components-in-an-undirected-graph.cpp) [Python](./Python/number-of-connected-components-in-an-undirected-graph.py) | _O(n)_ | _O(n)_| Medium | 📖 | Union Find |
211 | 212 |
|
212 | 213 | ## Data Structure
|
213 | 214 | # | Problem | Solution | Time | Space | Difficulty | Tag | Note
|
|
0 commit comments