Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/lfir/algorithm-notes
- Owner: lfir
- Created: 2020-12-20T03:48:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T16:32:50.000Z (10 months ago)
- Last Synced: 2025-02-03T04:51:10.573Z (18 days ago)
- Topics: algorithms, data-structures, java-11, python-3-12
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 firstexport PYTHONPATH="${PYTHONPATH}:$(pwd)/src/python"