GitXplorerGitXplorer
d

DataStructures-in-Python

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
b557ca39b3f9edec248586fdcc510f9dc3ab40eb

cleaning up some files

ddavid-xander committed 3 years ago
Unverified
64dacd9bc10341faf335949ba4698a68b54ab6b6

tree practice wip

ddavid-xander committed 3 years ago
Unverified
ae4df090048095be574463a1a2c67e6b3b593e0c

the final touches for the cleaning

ddavid-xander committed 3 years ago
Unverified
77184d1b54efb1185b5809532ee9323a64c9ea43

fixing the readme

ddavid-xander committed 3 years ago
Unverified
1b9a4123f841c4b9d3c9c5801b168e06ba4cb702

erasing .vscode from the repo

ddavid-xander committed 3 years ago
Unverified
c731de6c03a8eac9d76b6afbfa104b649cc25d43

applying the .gitignore

ddavid-xander committed 3 years ago

README

The README file for this repository.

DataStructures practice in Python

Always aplying a bit of unit testing with huge steps, but gradually finding the result. For example, if Queue is created using a Stack that is using a Linked list, I started by creating and testing the linked list, then the Stack and finally the Queue.

Not packaging yet, so simple export path will do for the tests: export PYTHONPATH="${PYTHONPATH}:YOUR_ABSOLUTE_PATH_TO_THE_PROJECT_FOLDER"

In my case I did this in a virtual env: export PYTHONPATH="${PYTHONPATH}:/Users/david/__PYTHON/DataStructures/datastructures"