fix: delete min function

This commit is contained in:
komisan19 2023-12-17 15:45:46 +09:00
parent 039cced8ae
commit e3a9dce998

View file

@ -58,13 +58,6 @@ func stronglyConnected(acct *sccAcct, g *Graph, v Vertex) int {
return minIdx
}
func min(a, b int) int {
if a <= b {
return a
}
return b
}
// sccAcct is used ot pass around accounting information for
// the StronglyConnectedComponents algorithm
type sccAcct struct {