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
Up to date (2016-03-10), there are `260` problems on [LintCode Online Judge](http://lintcode.com/).
3
+
Up to date (2016-03-14), there are `263` problems on [LintCode Online Judge](http://lintcode.com/).
4
4
The number of problems is increasing recently.
5
-
Here is the classification of all `260` problems.
5
+
Here is the classification of all `263` problems.
6
6
For more problems and solutions, you can see my [LeetCode](https://github.com/kamyu104/LeetCode) repository.
7
7
I'll keep updating for full summary and better solutions. Stay tuned for updates.
8
8
@@ -131,6 +131,7 @@ I'll keep updating for full summary and better solutions. Stay tuned for updates
131
131
|450|[Reverse Nodes in k-Group](http://lintcode.com/en/problem/reverse-nodes-in-k-group/)|[C++](./C++/reverse-nodes-in-k-group.cpp)|_O(n)_|_O(1)_| Hard | LeetCode ||
132
132
|451|[Swap Nodes in Pairs](http://lintcode.com/en/problem/swap-nodes-in-pairs/)|[C++](./C++/swap-nodes-in-pairs.cpp)|_O(n)_|_O(1)_| Easy | LeetCode ||
133
133
|452|[Remove Linked List Elements](http://lintcode.com/en/problem/remove-linked-list-elements/)|[C++](./C++/remove-linked-list-elements.cpp)|_O(n)_|_O(1)_| Naive | LeetCode ||
134
+
|511|[Swap Two Nodes in Linked List](http://lintcode.com/en/problem/swap-two-nodes-in-linked-list/)|[C++](./C++/swap-two-nodes-in-linked-list.cpp)|_O(n)_|_O(1)_| Medium |||
134
135
135
136
## Tree
136
137
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
@@ -357,6 +358,7 @@ I'll keep updating for full summary and better solutions. Stay tuned for updates
357
358
|150|[Best Time to Buy and Sell Stock II](http://lintcode.com/en/problem/best-time-to-buy-and-sell-stock-ii/)|[C++](./C++/best-time-to-buy-and-sell-stock-ii.cpp)|_O(n)_|_O(1)_| Medium | LeetCode, EPI ||
358
359
|151|[Best Time to Buy and Sell Stock III](http://lintcode.com/en/problem/best-time-to-buy-and-sell-stock-iii/)|[C++](./C++/best-time-to-buy-and-sell-stock-iii.cpp)|_O(n)_|_O(1)_| Medium | LeetCode, EPI ||
|168|[Burst Balloons](http://lintcode.com/en/problem/burst-balloons/)|[C++](./C++/burst-balloons.cpp)|_O(n)_|_O(1)_| Medium | LeetCode ||
360
362
|191|[Maximum Product Subarray](http://lintcode.com/en/problem/maximum-product-subarray/)|[C++](./C++/maximum-product-subarray.cpp)|_O(n)_|_O(1)_| Medium | LeetCode ||
361
363
|392|[House Robber](http://lintcode.com/en/problem/house-robber/)|[C++](./C++/house-robber.cpp)|_O(n)_|_O(1)_| Medium | LeetCode ||
362
364
|393|[Best Time to Buy and Sell Stock IV](http://lintcode.com/en/problem/best-time-to-buy-and-sell-stock-iv/)|[C++](./C++/best-time-to-buy-and-sell-stock-iv.cpp)|_O(k * n)_|_O(k)_| Hard | LeetCode, EPI ||
@@ -369,6 +371,7 @@ I'll keep updating for full summary and better solutions. Stay tuned for updates
369
371
|435|[Post Office Problem](http://lintcode.com/en/problem/post-office-problem/)|[C++](./C++/post-office-problem.cpp)|_O(k * n^2)_|_O(n)_| Hard | PKU 1160 ||
370
372
|436|[Maximal Square](http://lintcode.com/en/problem/maximal-square/)|[C++](./C++/maximal-square.cpp)|_O(m * n)_|_O(n)_| Medium | LeetCode ||
371
373
|510|[Maximal Rectangle](http://lintcode.com/en/problem/maximal-rectangle/)|[C++](./C++/maximal-rectangle.cpp)|_O(m * n)_|_O(n)_| Hard | LeetCode ||
374
+
|512|[Decode Ways](http://lintcode.com/en/problem/decode-ways/)|[C++](./C++/decode-ways.cpp)|_O(n)_|_O(1)_| Medium | LeetCode ||
372
375
373
376
## Greedy
374
377
| # | Title | Solution | Time | Space | Difficulty | Tag | Note |
0 commit comments