/py-linked-lists

Having fun with linked lists in Python using type hints and mypy

Primary LanguagePython

LinkedList in Python

This repository is for fun and learning about a bunch of things:

  • Implement a custom LinkedList class in Python
  • Use Python generics to add (strong) typing to the LinkedList implementation
  • Use mypy for static code analysis

Please note that this code is not production ready.

Getting started

This repository uses Taskfile.

Clone the repository and then install and lint/test the package with

$ task install
$ task lint test