3 lines
107 B
Python
3 lines
107 B
Python
import BubbleSort as bs
|
|
t1 = (12,34,78,11,90,45,12.4,34.11,78.3,11.5,90.12,45.6)
|
|
print(bs.BubbleSort(t1,1)) |