You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@riberr The DFS visit function takes K (the generic type for the hash, as opposed to the contained vertex type).
So you would need to do the following to start at Paris and descend until London:
f := func(name string) bool {
return name == "London"
}
graph.DFS(g, "Paris", f)
Hi,
This example is not possible:
Warning: "Cannot use 'f' (type func(c City) bool) as the type func(string) bool"
Am I missing something? Because the docs says this should be possible.
The text was updated successfully, but these errors were encountered: