7 lines
145 B
Go
7 lines
145 B
Go
|
package d15
|
||
|
|
||
|
func P1(in string) int {
|
||
|
weights, neighbors := weightNeighbors(in)
|
||
|
return dijkstra(0, node(len(weights)-1), weights, neighbors)
|
||
|
}
|