Skip to content

Commit e2c1246

Browse files
committed
Add missing docstrings to tim_sort helper functions
1 parent 5779427 commit e2c1246

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sorts/tim_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def main():
101101
Run a simple demonstration of the Tim Sort algorithm.
102102
"""
103103

104-
lst = [5, 9, 10, 3, -4, 5, 178, 92, 46, -18, 0, 7]
104+
lst = [5, 9, 10, 3, -4, 5, 178, 92, 46, -18, 0, 7, -3]
105105
sorted_lst = tim_sort(lst)
106106
print(sorted_lst)
107107

0 commit comments

Comments
 (0)