Pārlūkot izejas kodu

Fixing merge print.

Jeann-Carlos 2 gadus atpakaļ
vecāks
revīzija
71829ca50b
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      sorting.py

+ 1
- 1
sorting.py Parādīt failu

@@ -58,7 +58,7 @@ for i in range(veces):
58 58
 	t1 = time.process_time()					#tomamos el tiempo inicial
59 59
 	mergeSort(mergelista,0,len(mergelista)-1) 	#ejecutamos el algoritmo mergeSort
60 60
 	acumulaMerge+=time.process_time() - t1		#acumulamos el tiempo de ejecucion
61
-	print(acumulaMerge)							#desplegamos la lista
61
+	print(mergelista)							#desplegamos la lista
62 62
 
63 63
 	t1 = time.process_time()				#tomamos el tiempo inicial
64 64
 	heapSort(heaplista)					    #ejecutamos el algoritmo heapSort