Skip to content

Commit 494fb4f

Browse files
bardia52cclauss
authored andcommitted
address merge_soft duplicate files (TheAlgorithms#1612)
Here the old file merge_sort_fastest is renamed to unknown_sort. Because it is not merge sort algorithm. Comments are updated accordingly.
1 parent caad744 commit 494fb4f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sorts/merge_sort_fastest.py renamed to sorts/unknown_sort.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""
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.
2+
Python implementation of a sort algorithm.
43
Best Case Scenario : O(n)
54
Worst Case Scenario : O(n^2) because native python functions:min, max and remove are already O(n)
65
"""

0 commit comments

Comments
 (0)