Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lfir/algorithm-notes

Personal notes and implementations of some interesting algorithms.
https://github.com/lfir/algorithm-notes

algorithms data-structures java-11 python-3-12

Last synced: 4 days ago
JSON representation

Personal notes and implementations of some interesting algorithms.

Awesome Lists containing this project

README

        

## Algorithm notes
Personal notes and Python and Java implementations of some interesting algorithms I've not found clearly
presented elsewhere so far.

#### Notes
- Running files (such as graphs/maze_solver.py) that import modules from the project's packages (i.e. utils.py) and
reside in sub-directories, directly instead of via main.py, requires adding the src directory to PYTHONPATH first

export PYTHONPATH="${PYTHONPATH}:$(pwd)/src/python"