We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 841ce45 commit 37d0ae4Copy full SHA for 37d0ae4
bubble-sort/bubSort.py
@@ -7,7 +7,7 @@ def bubSort(arr):
7
if arr[j] > arr[j+1]:
8
arr[j], arr[j+1] = arr[j+1], arr[j]
9
10
-arr = [4, 43, 22, 92, 78, 15, 50]
+arr = [5, 7, 1, 0, 6, 12, 11]
11
print("Before Sorting, the array is:", arr)
12
13
bubSort(arr)
0 commit comments