MCPcopy Create free account
hub / github.com/VanjaRo/LeetCode / main

Function main

tasks/332.go:8–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6)
7
8func main() {
9 tickets := [][]string{{"JFK", "SFO"}, {"JFK", "ATL"}, {"SFO", "ATL"}, {"ATL", "JFK"}, {"ATL", "SFO"}}
10 fmt.Print(findItinerary(tickets))
11}
12
13func findItinerary(tickets [][]string) []string {
14 graph := newGraph(tickets)

Callers

nothing calls this directly

Calls 2

findItineraryFunction · 0.85
PrintMethod · 0.80

Tested by

no test coverage detected