Update bubble_sort.md

This commit is contained in:
Shobhit Sachan
2018-03-07 14:49:38 +05:30
committed by GitHub
parent f5bbf1f0a3
commit ef3dc10664

View File

@ -16,5 +16,5 @@ def bubbleSort(arr):
```python
arr = [54,26,93,17,77,31,44,55,20]
bubbleSort(arr)
print("sorted %s" arr) # sorted via bubble sort
print("sorted %s" %arr) # sorted via bubble sort
```