Skip to content

Commit 97e9423

Browse files
benfeinmrmaxguns
andauthored
Update sorts/recursive_mergesort_array.py
Co-authored-by: Maxim R. <[email protected]>
1 parent 999e144 commit 97e9423

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
@@ -30,7 +30,7 @@ def merge(arr: list[int]) -> list[int]:
3030
arr[k] = left_array[i]
3131
i = i + 1
3232
k = k + 1
33-
while(j < right_size):
33+
while j < right_size:
3434
arr[k] = right_array[j]
3535
j = j + 1
3636
k = k + 1

0 commit comments

Comments
 (0)