hsbmaulana-pycollection

Data Structure and Algorithm


License
Other
Install
pip install hsbmaulana-pycollection==1.0.0

Documentation

PYCollection

PYCollection provides convenient helper for working with data structures and algorithms.

Getting Started

Installation :

$ pip install hsbmaulana-pycollection

How to use :

from Pycollection.Lists.ArrayList import ArrayList
from Pycollection.Lists.LinkedList import LinkedList

list = ArrayList ()

list.add ("A")
list.add ("B")
list.add ("C")
list.add ("D")
list.add ("E")

assert (list.count () == 5)

Author