浏览代码

Fixed an indent error.

Ernesto Ortiz 3 年前
父节点
当前提交
4f59c35efe
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      sorting.py

+ 3
- 3
sorting.py 查看文件

@@ -152,9 +152,9 @@ for i in range(veces):
152 152
 	lista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
153 153
 
154 154
 	listaMerge = lista[:]
155
-    listaHeap = lista[:]
156
-    listaQuick = lista[:]
157
-    listaShell = lista[:]
155
+	listaHeap = lista[:]
156
+	listaQuick = lista[:]
157
+	listaShell = lista[:]
158 158
 	
159 159
 	t1 = time.process_time()				#seteamos el tiempo al empezar
160 160
 	mergeSort(listaMerge) 						#ejecutamos el algoritmo mergeSort