We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34f7f1 commit 1a9f96aCopy full SHA for 1a9f96a
sorting_algorithms.py
@@ -2,7 +2,8 @@
2
3
4
def top_down_mergesort(arr: List[float]) -> List[float]:
5
- # Cutoff chosen based on runtime improvement consistency after various tests.
+ # Cutoff chosen based on execution time improvement consistency
6
+ # after various tests.
7
insertion_sort_cutoff = 15
8
9
def sort(lo: int, hi: int):
0 commit comments