Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 15c23f0

Browse files
committed
add some changes
1 parent 3b73298 commit 15c23f0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Other Algorithms/Bubble_Sort.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ def bubble_sort(array):
2727
if already_sorted:
2828
break
2929

30+
3031
return array

Other Algorithms/Tim_Sort.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ def insertion_sort(array, left=0, right=None):
2929
# the `key_item` in its correct location
3030
array[j + 1] = key_item
3131

32-
return array
32+
return array
33+
34+

0 commit comments

Comments
 (0)