Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jasonwashburn/dsa-python

Implementing Data Structures and Algorithms in Python using TDD
https://github.com/jasonwashburn/dsa-python

algorithms data-structures tdd

Last synced: 9 days ago
JSON representation

Implementing Data Structures and Algorithms in Python using TDD

Awesome Lists containing this project

README

        

# Data Structures and Algorithms in Python with TDD

[![Status][status badge]][status badge]
[![Tests][github actions badge]][github actions page]
[![pre-commit enabled][pre-commit badge]][pre-commit project]
[![Black codestyle][black badge]][black project]

[black badge]: https://img.shields.io/badge/code%20style-black-000000.svg
[black project]: https://github.com/psf/black
[github actions badge]: https://github.com/jasonwashburn/dsa-python/workflows/Lint_And_Test/badge.svg
[github actions page]: https://github.com/jasonwashburn/dsa-python/actions?workflow=Lint_And_Test
[github page]: https://github.com/jasonwashburn/dsa-python
[pre-commit badge]: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
[pre-commit project]: https://pre-commit.com/
[status badge]: https://badgen.net/badge/status/alpha/d8624d

Implementing some common data structures and algorithms in python for fun using TDD

## Data Structures
- [x] Linked List
- [x] Doubly Linked List
- [x] Stack
- [x] Queue
- [x] Binary Search Tree
- [ ] Hash Table (in work)

## Algorithms
- Coming soon...

### Development

- Formatting: Black
- Linting: Ruff, Mypy
- Testing: Pytest