Skip to content

Commit 94a9323

Browse files
authored
Removes unused variables
1 parent d92f687 commit 94a9323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sorts/recursive_mergesort_array.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ def merge(arr: list[int]) -> list[int]:
1313
right_array = arr[middle_length:]
1414
left_size = len(left_array)
1515
right_size = len(right_array)
16-
l = merge(left_array)
17-
r = merge(right_array)
16+
merge(left_array)
17+
merge(right_array)
1818
i = 0
1919
j = 0
2020
k = 0

0 commit comments

Comments
 (0)