Преглед изворни кода

Arreglos a partes de shell donde se me quedaron dos : despues de los ifs.

gilberto.cancel пре 3 година
родитељ
комит
31d5d2ab9c
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2
    2
      sorting.py

+ 2
- 2
sorting.py Прегледај датотеку

@@ -127,13 +127,13 @@ def shellSort(lista):
127 127
 
128 128
 
129 129
             #Verifica antes de salirse de la lista para poder comenzar otra vuelta con k/2.
130
-            if(j == n)
130
+            if(j == n):
131 131
                 k = int(k/2)
132 132
                 i = 0 
133 133
                 j = k
134 134
 
135 135
             #Identifica cuando el sort se supone que haya terminado.
136
-            if(k == 0)
136
+            if(k == 0):
137 137
                 termine = True
138 138
 
139 139
 	return lista