Joel 3 лет назад
Родитель
Сommit
ded68a6125
1 измененных файлов: 0 добавлений и 2 удалений
  1. 0
    2
      sorting.py

+ 0
- 2
sorting.py Просмотреть файл

@@ -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