Avi Garg

Results 2 comments of Avi Garg

``from sys import stdin def bubbleSort(arr, n) : for i in range(n-1): for j in range(n-i-1): if arr[j]> arr[j+1]: temp = arr[j] arr[j]= arr[j+1] arr[j+1] = temp #Taking Input Using...

> add bubble sort I am submitting a code of bubble sort in python. I hope it is ok