You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -298,9 +298,9 @@ This algorithm never needed to compare all the differences to one another, savin
298
298
- Very simple to implement.
299
299
300
300
#### Time Complexity
301
-
- Best Case Sort: Merge Sort: `O(n^2)`
302
-
- Average Case Sort: Merge Sort: `O(n^2)`
303
-
- Worst Case Sort: Merge Sort: `O(n^2)`
301
+
- Best Case Sort: `O(n^2)`
302
+
- Average Case Sort: `O(n^2)`
303
+
- Worst Case Sort: `O(n^2)`
304
304
305
305
#### Space Complexity
306
306
- Worst Case: `O(1)`
@@ -320,7 +320,7 @@ This algorithm never needed to compare all the differences to one another, savin
320
320
321
321
#### What you need to know
322
322
- Inefficient for large data sets, but can be faster for than other algorithms for small ones.
323
-
- Although it has an `O(n^2)`, in practice it slightly less since its comparison scheme only requires checking place if its smaller than its neighbor.
323
+
- Although it has an `O(n^2)` time complexity, in practice it is slightly less since its comparison scheme only requires checking place if it is smaller than its neighbor.
0 commit comments