I created this Maze traversal and Linked List visualization to kind of reviewing the data structure and see how it got applied.
I develop the backend in Fastapi
run the project by following
cd backend
python3 -m venv venv
source venv/bin/active
pip install -r requirements.txt
fastapi dev app/main.py
the project will appear something like this
when you navigate to http://127.0.0.1:8000/docs
you will see something like this with all the endpoints has created
Created with Vite
and shadcn/ui
run the project by following
cd frontend
yarn install
yarn dev
Feel free to use and modify anything. This is a project for learning purpose.