Skip to content

hsbmaulana/pycollection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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