jessicalexander-sort

Package that includes multiple sorting method


License
MIT
Install
pip install jessicalexander-sort==0.1.7

Documentation

jessicalexander-sort

This package is an exercise pypi package that cobtains multiple sorting method

In this README 👇

Features

  • Various sorting algorithms:
    • Bubble Sort
    • Quick Sort
    • Insertion Sort
  • Can be used to sort a list of number in ascending format
  • Suitable for educational purpose

Usage

Installation

You can install the package using pip:

pip install jessicalexander-sort

Initial setup

  1. Make sure you're running at least python 3 and above
  2. Prepare the list of numbers you want to sort

Example Usage

arr = [5,6,7,13,44,67,22,11]

print(sort.bubble_sort.bubble_sort(arr)) #for bubble sort
print(sort.insertion_sort.insertion_sort(arr)) #for insertion sort
print(sort.quick_sort.quick_sort(arr)) #for quick sort

Contributing

If you find a bug 🐛, please open an issue. If you have an idea for an improvement or new feature 🚀, please open a feature request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

f you have any questions or issues, please open an issue on the GitHub repository or contact me at ssicalexander@gmail.com.