Skip to content

Commit 105c2d3

Browse files
Update
1 parent 5f8f4f7 commit 105c2d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Chapter11/Insertion_sort.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def insertion_sort(unsorted_list):
1313

1414

1515

16-
my_list = [10, 11, 12, 1, 2, 3]
17-
print("List before sorting", my_list)
16+
my_list = [5, 1, 100, 2, 10]
17+
print("Original ist", my_list)
1818
insertion_sort(my_list)
19-
print("List before sorting", my_list)
19+
print("Sorted list", my_list)

0 commit comments

Comments
 (0)