Skip to content

Commit 13d2f9d

Browse files
authored
Test on 3.14
Tested on 3.14.
1 parent 788d95b commit 13d2f9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎sorts/binary_insertion_sort.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def binary_insertion_sort(collection: list) -> list:
5656
returncollection
5757

5858

59-
if__name__=="__main":
59+
if__name__=="__main__":
6060
user_input=input("Enter numbers separated by a comma:\n").strip()
6161
try:
6262
unsorted= [int(item) foriteminuser_input.split(",")]

0 commit comments

Comments
(0)