The Wayback Machine - https://web.archive.org/web/20201128124845/https://github.com/keon/algorithms
Skip to content
master
Go to file
Code

Latest commit

…metry Groups (Algorithm) (#741)

* Put proper parenthesis for expected output.

* Add the Monomial and Polynomial Data Structure for symbolic computation.

* Add an algorithm to generate the cycle index polynomial for Symmetry Group on n symbols.

* Add multiple Unit Tests for every Polynomial and Monomial operation.

* Revert the parenthesis change because it didn't add much value.

* Fix typo that introduced a Syntax Error.

* Remove future annotations because of incompatibility of postponed evaluation of annotations in Python <= 3.6.

* Add record for Polynomial and symmetry group index. Rearrange records to be alphabetical.

Co-authored-by: aalekhpatel07 <[email protected]>
6ce5fea

Git stats

Files

Permalink
Failed to load latest commit information.

README.md

PyPI version Open Source Helpers Build Status Coverage Status

Pythonic Data Structures and Algorithms

Minimal and clean example implementations of data structures and algorithms in Python 3.

Contributing

Thanks for your interest in contributing! There are many ways to contribute to this project. Get started here

Tests

Use unittest

For running all tests write down:

$ python3 -m unittest discover tests

For running some specific tests you can do this as following (Ex: sort):

$ python3 -m unittest tests.test_sort

Use pytest

For running all tests write down:

$ python3 -m pytest tests

Install

If you want to use the API algorithms in your code, it is as simple as:

$ pip3 install algorithms

You can test by creating a python file: (Ex: use merge_sort in sort)

from algorithms.sort import merge_sort

if __name__ == "__main__":
    my_list = [1, 8, 3, 5, 6]
    my_list = merge_sort(my_list)
    print(my_list)

Uninstall

If you want to uninstall algorithms, it is as simple as:

$ pip3 uninstall -y algorithms

List of Implementations

Contributors

Thanks to all the contributors who helped in building the repo.

You can’t perform that action at this time.