OmkarPathak / pygorithm
- понедельник, 7 августа 2017 г. в 03:13:55
A Python module for learning all major algorithms
pip3 install pygorithm
sudo
before installingfrom pygorithm.sorting import bubble_sort
myList = [12, 4, 3, 5, 13, 1, 17, 19, 15]
sortedList = bubble_sort.sort(myList)
print(sortedList)
from pygorithm.sorting import bubble_sort
code = bubble_sort.get_code()
print(code)
from pygorithm.sorting import bubble_sort
time_complexity = bubble_sort.time_complexities()
print(time_complexity)