Selaa lähdekoodia

Removed superfluous code

Joel 3 vuotta sitten
vanhempi
commit
ded68a6125
1 muutettua tiedostoa jossa 0 lisäystä ja 2 poistoa
  1. 0
    2
      sorting.py

+ 0
- 2
sorting.py Näytä tiedosto

@@ -30,8 +30,6 @@ def shellSort(lista):
30 30
 	while interval > 0:
31 31
 		# Process repeats for each value between 1 -> interval
32 32
 		for i in range(0, interval):
33
-			# Starting index determines initial portion of the array that is sorted
34
-			sortedIndex = i
35 33
 			# Process repeats as long as the current value being considered is greater than the value to its left
36 34
 			# Being greater than the value to its left means that it is not in the correct location
37 35
 			j = i