Browse Source

fixed a comment

deleted a comment in from shellSort that appeared twice
Orlando04 2 years ago
parent
commit
0ce266d12c
1 changed files with 0 additions and 5 deletions
  1. 0
    5
      sorting.py

+ 0
- 5
sorting.py View File

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