Quellcode durchsuchen

Removed superfluous code

Joel vor 3 Jahren
Ursprung
Commit
ded68a6125
1 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
  1. 0
    2
      sorting.py

+ 0
- 2
sorting.py Datei anzeigen

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