mirror of
				https://github.com/onyx-and-iris/aoc2024.git
				synced 2025-11-03 22:41:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			228 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			228 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package two
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
)
 | 
						|
 | 
						|
func Solve(buf []byte) (int, error) {
 | 
						|
	r := bytes.NewReader(buf)
 | 
						|
	graph, err := parseLines(r)
 | 
						|
	if err != nil {
 | 
						|
		return 0, err
 | 
						|
	}
 | 
						|
 | 
						|
	possibleSafe := graph.dijkstra()
 | 
						|
 | 
						|
	return possibleSafe, nil
 | 
						|
}
 |