shukdevdatta123 commited on
Commit
38032cc
·
verified ·
1 Parent(s): 09678fd

Delete bubbleSort.py

Browse files
Files changed (1) hide show
  1. bubbleSort.py +0 -13
bubbleSort.py DELETED
@@ -1,13 +0,0 @@
1
- import time
2
- from colors import *
3
-
4
-
5
- def bubble_sort(data, draw_data, time_tick):
6
- size = len(data)
7
- for i in range(size-1):
8
- for j in range(size-i-1):
9
- if data[j] > data[j+1]:
10
- data[j], data[j+1] = data[j+1], data[j]
11
- draw_data(data, [YELLOW if x == j or x == j+1 else BLUE for x in range(len(data))])
12
- time.sleep(time_tick)
13
- draw_data(data, [BLUE for x in range(len(data))])