Skip to content

Commit d29ac91

Browse files
authored
Fix
1 parent bb97a1e commit d29ac91

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

6.quickSort.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ function swap(arr, i, j) {
7171
def quickSort(arr, left=None, right=None):
7272
left = 0 if not isinstance(left,(int, float)) else left
7373
right = len(arr)-1 if not isinstance(right,(int, float)) else right
74-
print(left,right)
7574
if left < right:
7675
partitionIndex = partition(arr, left, right)
7776
quickSort(arr, left, partitionIndex-1)

0 commit comments

Comments
 (0)