1
1
LeetCode
2
2
========
3
3
4
- Up to date (2015-01-12), there are total ` 177 ` problems on [ LeetCode Online Judge] ( https://oj.leetcode.com/ ) .
4
+ Up to date (2015-01-12), there are total ` 179 ` 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 ` 177 ` problems.
6
+ Here is the classification of all ` 179 ` problems.
7
7
I'll keep updating for full summary and better solutions. Stay tuned for updates.
8
8
9
9
---
@@ -360,6 +360,7 @@ Problem | Solution | Time | Space | Difficul
360
360
--------------- | --------------- | --------------- | --------------- | -------------- | -----
361
361
[ Insert Interval] | [ insert-interval.py] | _ O(n)_ | _ O(1)_ | Hard |
362
362
[ Insertion Sort List] |[ insertion-sort-list.py] | _ O(n^2)_ | _ O(1)_ | Medium |
363
+ [ Largest Number] | [ largest-number.py] | _ O(n^2)_ | _ O(n)_ | Medium |
363
364
[ Maximum Gap] | [ maximum-gap.py] | _ O(n)_ | _ O(n)_ | Hard | Tricky
364
365
[ Merge Intervals] | [ merge-intervals.py] | _ O(n^2)_ | _ O(1)_ | Hard |
365
366
[ Merge Sorted Array] | [ merge-sorted-array.py] | _ O(n)_ | _ O(1)_ | Easy |
@@ -371,6 +372,8 @@ Problem | Solution | Time | Space | Difficul
371
372
[ insert-interval.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/insert-interval.py
372
373
[ Insertion Sort List ] :https://oj.leetcode.com/problems/insertion-sort-list/
373
374
[ insertion-sort-list.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/insertion-sort-list.py
375
+ [ Largest Number ] :https://oj.leetcode.com/problems/largest-number/
376
+ [ largest-number.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/largest-number.py
374
377
[ Maximum Gap ] :https://oj.leetcode.com/problems/maximum-gap/
375
378
[ maximum-gap.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/maximum-gap.py
376
379
[ Merge Intervals ] :https://oj.leetcode.com/problems/merge-intervals/
0 commit comments