Skip to content

Commit 5f020bd

Browse files
committed
Update README.md
1 parent d248435 commit 5f020bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ Problem | Solution | Time | Space | Difficul
368368
[Partition List]| [partition-list.py] | _O(n)_ | _O(1)_ | Medium |
369369
[Remove Nth Node From End of List]| [remove-nth-node-from-end-of-list.py] | _O(n)_ | _O(1)_ | Easy |
370370
[Reorder List]| [reorder-list.py] | _O(n)_ | _O(1)_ | Medium |
371+
[Two Sum II - Input array is sorted] | [two-sum-ii-input-array-is-sorted.py] | _O(n)_ | _O(1)_ | Medium |
371372

372373
[Linked List Cycle]:https://oj.leetcode.com/problems/linked-list-cycle/
373374
[linked-list-cycle.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/linked-list-cycle.py
@@ -379,6 +380,8 @@ Problem | Solution | Time | Space | Difficul
379380
[remove-nth-node-from-end-of-list.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/remove-nth-node-from-end-of-list.py
380381
[Reorder List]:https://oj.leetcode.com/problems/reorder-list/
381382
[reorder-list.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/reorder-list.py
383+
[Two Sum II - Input array is sorted]:https://oj.leetcode.com/problems/two-sum-ii-input-array-is-sorted/
384+
[two-sum-ii-input-array-is-sorted.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/two-sum-ii-input-array-is-sorted.py
382385

383386
---
384387

@@ -472,7 +475,6 @@ Problem | Solution | Time | Space | Difficul
472475
[Search in Rotated Sorted Array II] | [search-in-rotated-sorted-array-ii.py] | _O(logn)_ | _O(1)_ | Medium |
473476
[Search Insert Position] | [search-insert-position.py] | _O(logn)_ | _O(1)_ | Medium |
474477
[Sqrt(x)] | [sqrtx.py] | _O(logn)_ | _O(1)_ | Medium |
475-
[Two Sum II - Input array is sorted] | [two-sum-ii-input-array-is-sorted.py] | _O(n)_ | _O(1)_ | Medium |
476478

477479
[Find Minimum in Rotated Sorted Array]:https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array/
478480
[find-minimum-in-rotated-sorted-array.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/find-minimum-in-rotated-sorted-array.py
@@ -496,8 +498,6 @@ Problem | Solution | Time | Space | Difficul
496498
[search-insert-position.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/search-insert-position.py
497499
[Sqrt(x)]:https://oj.leetcode.com/problems/sqrtx/
498500
[sqrtx.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/sqrtx.py
499-
[Two Sum II - Input array is sorted]:https://oj.leetcode.com/problems/two-sum-ii-input-array-is-sorted/
500-
[two-sum-ii-input-array-is-sorted.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/two-sum-ii-input-array-is-sorted.py
501501

502502
---
503503

0 commit comments

Comments
 (0)