We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e975d8c commit 937d26dCopy full SHA for 937d26d
.travis.yml
@@ -5,15 +5,4 @@ python:
5
before_install:
6
- pip install hint
7
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
+ - hint .
1.bubbleSort.md
@@ -53,7 +53,6 @@ function bubbleSort(arr) {
53
54
## 6. Python 代码实现
55
56
-
57
```python
58
def bubbleSort(arr):
59
for i in range(1, len(arr)):
0 commit comments