Skip to content

Instantly share code, notes, and snippets.

View dmandalinic's full-sized avatar

Dominik Mandalinić dmandalinic

View GitHub Profile
@ewancook
ewancook / bellman_ford.go
Last active March 9, 2024 08:14
Arbitrage with Bellman Ford
package bellmanford
import (
"math"
)
// Graph represents a graph consisting of edges and vertices
type Graph struct {
edges []*Edge
vertices []uint