|
1 | 1 | LeetCode
|
2 | 2 | ========
|
3 | 3 |
|
4 |
| -Up to date (2015-01-12), there are total `179` problems on [LeetCode Online Judge](https://oj.leetcode.com/). |
| 4 | +Up to date (2015-01-13), there are total `180` problems on [LeetCode Online Judge](https://oj.leetcode.com/). |
5 | 5 | The number of problems is increasing recently.
|
6 |
| -Here is the classification of all `179` problems. |
| 6 | +Here is the classification of all `180` problems. |
7 | 7 | I'll keep updating for full summary and better solutions. Stay tuned for updates.
|
8 | 8 |
|
9 | 9 | ---
|
@@ -716,12 +716,15 @@ Problem | Solution | Time | Space | Difficul
|
716 | 716 | Problem | Solution | Time | Space | Difficulty | Notes
|
717 | 717 | --------------- | --------------- | --------------- | --------------- | -------------- | -----
|
718 | 718 | [Combine Two Tables] | [combine-two-tables.sql] | _O(m + n)_ | _O(m + n)_ | Easy |
|
| 719 | +[Consecutive Numbers] | [/consecutive-numbers.sql] | _O(n)_ | _O(n)_ | Medium | |
719 | 720 | [Nth Highest Salary] | [nth-highest-salary.sql] | _O(n^2)_ | _O(n)_ | Medium |
|
720 | 721 | [Rank Scores] | [rank-scores.sql] | _O(n^2)_ | _O(n)_ | Medium |
|
721 | 722 | [Second Highest Salary] | [second-highest-salary.sql] | _O(n)_ | _O(1)_ | Easy |
|
722 | 723 |
|
723 | 724 | [Combine Two Tables]:https://oj.leetcode.com/problems/combine-two-tables/
|
724 | 725 | [combine-two-tables.sql]:https://github.com/kamyu104/LeetCode/blob/master/MySQL/combine-two-tables.sql
|
| 726 | +[Consecutive Numbers]:https://oj.leetcode.com/problems/consecutive-numbers/ |
| 727 | +[consecutive-numbers.sql]:https://github.com/kamyu104/LeetCode/blob/master/MySQL/consecutive-numbers.sql |
725 | 728 | [Nth Highest Salary]:https://oj.leetcode.com/problems/nth-highest-salary/
|
726 | 729 | [nth-highest-salary.sql]:https://github.com/kamyu104/LeetCode/blob/master/MySQL/nth-highest-salary.sql
|
727 | 730 | [Rank Scores]:https://oj.leetcode.com/problems/rank-scores/
|
|
0 commit comments