Explorar el Código

cambiosCamila1

camila.vazquez1 hace 3 años
padre
commit
313445c5f4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      sorting.py

+ 1
- 1
sorting.py Ver fichero

@@ -31,7 +31,7 @@ def mergeSort(lista):
31 31
                 else:
32 32
                         lista[k] = R[j]
33 33
                         j += 1
34
-                        k += 1
34
+                k += 1
35 35
  
36 36
         while i < len(L):
37 37
                 lista[k] = L[i]