Skip to content

Commit 13c9042

Browse files
benfeinmrmaxguns
andauthored
Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <[email protected]>
1 parent c20610e commit 13c9042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/recursive_mergesort_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def merge(arr: list[int]) -> list[int]:
2626
arr[k] = right_array[j]
2727
j = j + 1
2828
k = k + 1
29-
while(i < left_size):
29+
while i < left_size:
3030
arr[k] = left_array[i]
3131
i = i + 1
3232
k = k + 1

0 commit comments

Comments
 (0)