Explorar el Código

Modified sorting.py and it works

luislopez66 hace 2 años
padre
commit
8ec29f4d62
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0
    1
      sorting.py

+ 0
- 1
sorting.py Ver fichero

@@ -19,7 +19,6 @@ from merge import merge
19 19
 # First subarray is arr[l..m]
20 20
 # Second subarray is arr[m+1..r]
21 21
 
22
-
23 22
 def mergeSort(lista, l, r):
24 23
 	if l < r:
25 24
       # Same as (l+r)//2, but avoids overflow for