Skip to content

Commit 937d26d

Browse files
author
hustcc
committed
update hint 检查方式
1 parent e975d8c commit 937d26d

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

.travis.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,4 @@ python:
55
before_install:
66
- pip install hint
77
script:
8-
- hint README.md
9-
- hint SUMMARY.md
10-
- hint 1.bubbleSort.md
11-
- hint 2.selectionSort.md
12-
- hint 3.insertionSort.md
13-
- hint 4.shellSort.md
14-
- hint 5.mergeSort.md
15-
- hint 6.quickSort.md
16-
- hint 7.heapSort.md
17-
- hint 8.countingSort.md
18-
- hint 9.bucketSort.md
19-
- hint 10.radixSort.md
8+
- hint .

1.bubbleSort.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ function bubbleSort(arr) {
5353

5454
## 6. Python 代码实现
5555

56-
5756
```python
5857
def bubbleSort(arr):
5958
for i in range(1, len(arr)):

0 commit comments

Comments
 (0)