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