This is a collection of data structures whiteboard challenge solutions. It can be cloned from https://github.com/grandquista/data-structures-and-algorithms as follows.
git clone https://github.com/grandquista/data-structures-and-algorithms
Implementations for common computer science data structures, and solutions to whiteboard questions in Psuedocode and Python.
Each linked project in the TOC is designed to be tested in an isolated virtual environment. This can be created as follows.
cd <project sub directory>
python3 -m venv ENV
. ENV/bin/activate
Each project is also designed to support importing as a Python module.
- Data Structures
- Algorithms