We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caad744 commit 494fb4fCopy full SHA for 494fb4f
sorts/merge_sort_fastest.py renamed to sorts/unknown_sort.py
@@ -1,6 +1,5 @@
1
"""
2
-Python implementation of the fastest merge sort algorithm.
3
-Takes an average of 0.6 microseconds to sort a list of length 1000 items.
+Python implementation of a sort algorithm.
4
Best Case Scenario : O(n)
5
Worst Case Scenario : O(n^2) because native python functions:min, max and remove are already O(n)
6
0 commit comments