19-2-SKKU-OSS / 2019-2-OSS-L7

Data Structure And Algorithm Library in Python
http://19-2-skku-oss.github.io/2019-2-OSS-L7/
MIT License
1 stars 1 forks source link
algorithms data-structures python3

About our Team

2019.11.05 :octocat: #L7


Index

Members

Name Major/Grade GithubID
나종명 컴퓨터공학과/14 D-Sinus
조현진 컴퓨터공학과/16 guswh11
박찬혁 소프트웨어학과/19 WithM2
손병호 소프트웨어학과/19 sonho00
장진우 소프트웨어학과/19 doldam0

About Project

Our project based on algorithms.

PyPI version Open Source Helpers Build Status Coverage Status algorithms

Pythonic Data Structures and Algorithms

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


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

Activities

Code Contribution

Creating Documents

Creating Team Static Page

-> 가장 아름다운 파이썬 알고리즘 라이브러리

Screenshots


New or Edited Files

New Algorithm List

Wiki

Our wiki page is here.