We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e814f commit 7971929Copy full SHA for 7971929
README.md
@@ -368,7 +368,7 @@ Problem | Solution | Time | Space | Difficul
368
[Insertion Sort List]|[insertion-sort-list.py] | _O(n^2)_ | _O(1)_ | Medium |
369
[Largest Number] | [largest-number.py] | _O(n^2)_ | _O(n)_ | Medium |
370
[Maximum Gap] | [maximum-gap.py]| _O(n)_ | _O(n)_ | Hard | Tricky
371
-[Merge Intervals]| [merge-intervals.py] | _O(n^2)_ | _O(1)_ | Hard |
+[Merge Intervals]| [merge-intervals.py] | _O(nlogn)_ | _O(1)_ | Hard |
372
[Merge Sorted Array]| [merge-sorted-array.py] | _O(n)_ | _O(1)_ | Easy |
373
[Merge Two Sorted Lists]| [merge-two-sorted-lists.py] | _O(n)_ | _O(1)_ | Easy |
374
[Sort Colors] | [sort-colors.py] | _O(n)_ | _O(1)_ | Medium |
0 commit comments