Skip to content

Commit 9aff8bc

Browse files
authored
Update 1.bubbleSort.md
1 parent a8e6f8b commit 9aff8bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1.bubbleSort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function bubbleSort(arr) {
5555
## 6. Python 代码实现
5656

5757
```python
58-
def bubbleSort(arr):
58+
def BubbleSort(arr):
5959
for i in range(1, len(arr)):
6060
for j in range(0, len(arr)-i):
6161
if arr[j] > arr[j+1]:

0 commit comments

Comments
 (0)