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 17fd264 commit 0097c9fCopy full SHA for 0097c9f
.travis.yml
@@ -0,0 +1,21 @@
1
+sudo: required
2
+language: python
3
+python:
4
+ - "2.7"
5
+before_install:
6
+ - pip install flake8
7
+ - pip install hint
8
+script:
9
+ - flake8
10
+ - hint README.md
11
+ - hint SUMMARY.md
12
+ - hint 1.bubbleSort.md
13
+ - hint 2.selectionSort.md
14
+ - hint 3.insertionSort.md
15
+ - hint 4.shellSort.md
16
+ - hint 5.mergeSort.md
17
+ - hint 6.quickSort.md
18
+ - hint 7.heapSort.md
19
+ - hint 8.countingSort.md
20
+ - hint 9.bucketSort.md
21
+ - hint 10.radixSort.md
README.md
@@ -36,7 +36,7 @@
36
37
**Out-place**:占用额外内存
38
39
-**稳定性**:排序后2个相等键值的顺序和排序之前它们的顺序相同
+**稳定性**:排序后 2 个相等键值的顺序和排序之前它们的顺序相同
40
41
----
42
pythonSortTest.py renamed to test/pythonSortTest.py
0 commit comments