소스 검색

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,11 +114,6 @@ def quickSort(lista):
114 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 117
 def shellSort(lista):
123 118
 	#definan el algoritmo de ordenamiento shellsort
124 119