Skip to content

Commit cea6a35

Browse files
committed
verbose merge sort init
1 parent 07b5496 commit cea6a35

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pygorithm/sorting/merge_sort.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ def sort(_list):
4848
b = sort(_list[middle:])
4949
return merge(a, b)
5050

51+
def sort_iter(_list):
52+
pass
5153

5254
# TODO: Are these necessary?
5355
def time_complexities():

0 commit comments

Comments
 (0)