Skip to content

Commit 999e144

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

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
@@ -18,7 +18,7 @@ def merge(arr: list[int]) -> list[int]:
1818
i = 0
1919
j = 0
2020
k = 0
21-
while(i < left_size and j < right_size):
21+
while i < left_size and j < right_size:
2222
if left_array[i] < right_array[j]:
2323
arr[k] = left_array[i]
2424
i = i + 1

0 commit comments

Comments
 (0)