Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 466 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 466 Bytes

pyalgorithms

Some algorithms implemented in Python only for educational purposes.

These implementations may be less efficient than the implementations in the Python standard library.

Requirements

  • Python 3
  • Pycodestyle
    pip install pycodestyle

List of algorithms

  • Bubble sort
  • Counting sort
  • Insertion sort
  • Merge sort

Development

Run tests

python -m unittest discover

Run lint

pycodestyle pyalgorithms tests