IMPORTANT: At the VERY START of any coding task, you MUST:
- Create a new branch using the format:
claude-session-YYYYMMDD-[topic] - Push the branch to origin
- Start committing changes immediately
| package bellmanford | |
| import ( | |
| "math" | |
| ) | |
| // Graph represents a graph consisting of edges and vertices | |
| type Graph struct { | |
| edges []*Edge | |
| vertices []uint |
| #!/bin/bash | |
| # for Ubuntu | |
| sudo apt-get install build-essential libreadline-dev libconfig-dev libssl-dev lua5.2 liblua5.2-dev libevent-dev libjansson-dev libpython-dev make | |
| git clone https://github.com/vysheng/tg.git --recursive | |
| cd tg | |
| ./configure | |
| make |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\