From 8af92b2475dd34babca2a3b85f3f19dd423aed24 Mon Sep 17 00:00:00 2001 From: Suraj Kawadkar Date: Sat, 2 Jan 2021 21:33:15 +0530 Subject: [PATCH 1/2] comment added --- bubble_sort/bubble_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bubble_sort/bubble_sort.py b/bubble_sort/bubble_sort.py index 0f452f6..14c9bc0 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] From 9fedd9a8603f9cdf0cc9e5b095687f0afa376a23 Mon Sep 17 00:00:00 2001 From: Suraj Kawadkar Date: Sat, 2 Jan 2021 21:39:06 +0530 Subject: [PATCH 2/2] m --- bubble_sort/bubble_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bubble_sort/bubble_sort.py b/bubble_sort/bubble_sort.py index 14c9bc0..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 +# BUbble sort implemented def swap(a,i): temp = a[i] a[i] = a[i+1]