浏览代码

fixed a comment

deleted a comment in from shellSort that appeared twice
Orlando04 2 年前
父节点
当前提交
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