PYCollection provides convenient helper for working with data structures and algorithms.
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)
- Hasby Maulana (@hsbmaulana)