Skip to content

Commit 69c860b

Browse files
author
Riya H
authored
Update Bubble Sort - Array.py
1 parent cf0ae90 commit 69c860b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Functions/def Functions/Examples/Bubble Sort - Array.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bubble Sort - Array
1+
### Bubble Sort - Array ###
22

33
def bubbleSort(arr):
44
l = len(arr)
@@ -12,4 +12,3 @@ def bubbleSort(arr):
1212

1313
arr = [17, 28, 25, 1, 32, 3, 40]
1414
bubbleSort(arr)
15-

0 commit comments

Comments
 (0)