Skip to content

Commit 78560fc

Browse files
committed
update
1 parent 39c11fd commit 78560fc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ Problem | Solution | Time | Space | Difficul
297297
##Math
298298
Problem | Solution | Time | Space | Difficulty | Notes
299299
--------------- | --------------- | --------------- | --------------- | -------------- | -----
300+
[Divide Two Integers] | [divide-two-integers.py] | _O(logn)_ | _O(1)_ | Medium |
300301
[Fraction to Recurring Decimal] | [fraction-to-recurring-decimal.py] | _O(logn)_ | _O(1)_ | Medium |
301302
[Gray Code] | [gray-code.py] | _O(2^n)_ | _O(1)_ | Medium |
302303
[Integer to Roman] | [integer-to-roman.py] | _O(n)_ | _O(1)_ | Medium |
@@ -306,6 +307,8 @@ Problem | Solution | Time | Space | Difficul
306307
[Roman to Integer] | [roman-to-integer.py] | _O(n)_ | _O(1)_ | Easy |
307308
[Valid Number] | [valid-number.py] | _O(n)_ | _O(1)_ | Easy | `Automata`
308309

310+
[Divide Two Integers]:https://oj.leetcode.com/problems/divide-two-integers/
311+
[divide-two-integers.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/divide-two-integers.py
309312
[Fraction to Recurring Decimal]:https://oj.leetcode.com/problems/fraction-to-recurring-decimal/
310313
[fraction-to-recurring-decimal.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/fraction-to-recurring-decimal.py
311314
[Gray Code]:https://oj.leetcode.com/problems/gray-code/
@@ -338,7 +341,6 @@ Problem | Solution | Time | Space | Difficul
338341
[Sort Colors] | [sort-colors.py] | _O(n)_ | _O(1)_ | Medium |
339342
[Sort List] | [sort-list.py] | _O(nlogn)_ | _O(1)_ | Medium |
340343

341-
342344
[Insert Interval]:https://oj.leetcode.com/problems/insert-interval/
343345
[insert-interval.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/insert-interval.py
344346
[Insertion Sort List]:https://oj.leetcode.com/problems/insertion-sort-list/
@@ -459,7 +461,6 @@ Problem | Solution | Time | Space | Difficul
459461

460462
Problem | Solution | Time | Space | Difficulty | Notes
461463
--------------- | --------------- | --------------- | --------------- | -------------- | -----
462-
[Divide Two Integers] | [divide-two-integers.py] | _O(logn)_ | _O(1)_ | Medium |
463464
[Find Minimum in Rotated Sorted Array] | [find-minimum-in-rotated-sorted-array.py] | _O(logn)_ | _O(1)_ | Medium |
464465
[Find Minimum in Rotated Sorted Array II] | [find-minimum-in-rotated-sorted-array-ii.py] | _O(logn)_ ~ _O(n)_ | _O(1)_ | Hard |
465466
[Find Peak Element] | [find-peak-element.py] | _O(logn)_ | _O(1)_ | Medium |
@@ -472,8 +473,6 @@ Problem | Solution | Time | Space | Difficul
472473
[Search Insert Position] | [search-insert-position.py] | _O(logn)_ | _O(1)_ | Medium |
473474
[Sqrt(x)] | [sqrtx.py] | _O(logn)_ | _O(1)_ | Medium |
474475

475-
[Divide Two Integers]:https://oj.leetcode.com/problems/divide-two-integers/
476-
[divide-two-integers.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/divide-two-integers.py
477476
[Find Minimum in Rotated Sorted Array]:https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array/
478477
[find-minimum-in-rotated-sorted-array.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/find-minimum-in-rotated-sorted-array.py
479478
[Find Minimum in Rotated Sorted Array II]:https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/

0 commit comments

Comments
 (0)