Skip to content

lukemiloszewski/olympia

Repository files navigation

Olympia

Data structures and algorithms in python 🏛

Continuous Integration Test Coverage Package Version Supported Python Versions

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

About

Data structures and algorithms in python 🏛

Resources

License

Stars

Watchers

Forks