Metadata-Version: 2.1
Name: csworkshop
Version: 0.0.2
Summary: CS Design Studio
Home-page: https://github.com/tyleryep/workshop
Author: Tyler Yep
Author-email: tyep@cs.stanford.edu
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# workshop

[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/release/python-3100/)
[![PyPI version](https://badge.fury.io/py/csworkshop.svg)](https://badge.fury.io/py/csworkshop)
[![Build Status](https://github.com/TylerYep/workshop/actions/workflows/test.yml/badge.svg)](https://github.com/TylerYep/workshop/actions/workflows/test.yml)
[![GitHub license](https://img.shields.io/github/license/TylerYep/workshop)](https://github.com/TylerYep/workshop/blob/main/LICENSE)
[![codecov](https://codecov.io/gh/TylerYep/workshop/branch/main/graph/badge.svg)](https://codecov.io/gh/TylerYep/workshop)
[![Downloads](https://pepy.tech/badge/csworkshop)](https://pepy.tech/project/csworkshop)

My design studio of AI/ML/CS concepts. Code is adapted from many different websites across the Internet.

Separated into three sections:

- Algorithms
- Math
- Data Structures

# Usage

```
pip install csworkshop
```

```python
from cs.algorithms import binary_search
from cs.structures import Graph, FibonacciHeap
```
