Просмотр исходного кода

fixed a comment

deleted a comment in from shellSort that appeared twice
Orlando04 2 лет назад
Родитель
Сommit
0ce266d12c
1 измененных файлов: 0 добавлений и 5 удалений
  1. 0
    5
      sorting.py

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

114
 	and was adapted in order to work for this assigment.
114
 	and was adapted in order to work for this assigment.
115
 '''
115
 '''
116
 
116
 
117
-''' 
118
-	This algorithm was taken from: https://www.programiz.com/dsa/shell-sort 
119
-	and was adapted in order to work for this assigment.
120
-'''
121
-
122
 def shellSort(lista):
117
 def shellSort(lista):
123
 	#definan el algoritmo de ordenamiento shellsort
118
 	#definan el algoritmo de ordenamiento shellsort
124
 
119