diff --git a/bubble_sort/bubble_sort.py b/bubble_sort/bubble_sort.py index 0f452f6..c0a5321 100644 --- a/bubble_sort/bubble_sort.py +++ b/bubble_sort/bubble_sort.py @@ -1,5 +1,5 @@ # This script is to perform bubble sort on a given array of elements - +# BUbble sort implemented def swap(a,i): temp = a[i] a[i] = a[i+1]