Test on 3.14 (#13473)

Tested on 3.14.
This commit is contained in:
Matt Ryan
2025-10-15 13:22:51 -04:00
committed by GitHub
parent 9902c23e14
commit 85e67302d8

View File

@@ -56,7 +56,7 @@ def binary_insertion_sort(collection: list) -> list:
return collection
if __name__ == "__main":
if __name__ == "__main__":
user_input = input("Enter numbers separated by a comma:\n").strip()
try:
unsorted = [int(item) for item in user_input.split(",")]