Last updated:
0 purchases
olympia 0.2.0
Olympia
Data structures and algorithms in Python 🐍
Installation
pip install olympia
Usage
from olympia import LinkedList
ll = LinkedList()
ll.add_last(1)
ll.add_last(2)
ll.add_last(3)
ll
1 -> 2 -> 3 -> None
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.