Skip to content

Commit 47b3ea8

Browse files
committed
Whitespace Remove
1 parent 7eb0988 commit 47b3ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/merge_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def merge(left: list, right: list) -> list:
3939
result = []
4040
left_index = right_index = 0
4141
length_left , length_right = len(left) , len(right)
42-
42+
4343
while (left_index < length_left) and (right_index < length_right):
4444
if left[left_index] < right[right_index]:
4545
result.append(left[left_index])

0 commit comments

Comments
 (0)