1
1
LeetCode
2
2
========
3
3
4
- Up to date (2014-12-26 ), there are total ` 170 ` problems on [ LeetCode Online Judge] ( https://oj.leetcode.com/ ) .
4
+ Up to date (2014-12-27 ), there are total ` 171 ` 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 ` 170 ` problems.
6
+ Here is the classification of all ` 171 ` problems.
7
7
I'll keep updating for full summary and better solutions. Stay tuned for updates.
8
8
9
9
---
@@ -305,6 +305,7 @@ Problem | Solution | Time | Space | Difficul
305
305
--------------- | --------------- | --------------- | --------------- | -------------- | -----
306
306
[ Divide Two Integers] | [ divide-two-integers.py] | _ O(logn)_ | _ O(1)_ | Medium |
307
307
[ Excel Sheet Column Title] | [ excel-sheet-column-title.py] | _ O(logn)_ | _ O(1)_ | Easy |
308
+ [ Excel Sheet Column Number] | [ excel-sheet-column-number.py] | _ O(n)_ | _ O(1)_ | Easy |
308
309
[ Fraction to Recurring Decimal] | [ fraction-to-recurring-decimal.py] | _ O(logn)_ | _ O(1)_ | Medium |
309
310
[ Gray Code] | [ gray-code.py] | _ O(2^n)_ | _ O(1)_ | Medium |
310
311
[ Integer to Roman] | [ integer-to-roman.py] | _ O(n)_ | _ O(1)_ | Medium |
@@ -318,6 +319,8 @@ Problem | Solution | Time | Space | Difficul
318
319
[ divide-two-integers.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/divide-two-integers.py
319
320
[ Excel Sheet Column Title ] :https://oj.leetcode.com/problems/excel-sheet-column-title/
320
321
[ excel-sheet-column-title.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/excel-sheet-column-title.py
322
+ [ Excel Sheet Column Number ] :https://oj.leetcode.com/problems/excel-sheet-column-number/
323
+ [ excel-sheet-column-number.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/excel-sheet-column-number.py
321
324
[ Fraction to Recurring Decimal ] :https://oj.leetcode.com/problems/fraction-to-recurring-decimal/
322
325
[ fraction-to-recurring-decimal.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/fraction-to-recurring-decimal.py
323
326
[ Gray Code ] :https://oj.leetcode.com/problems/gray-code/
0 commit comments