Browse Source

This is better place

Piotr Czajkowski 4 years ago
parent
commit
d2e9b80550
1 changed files with 4 additions and 1 deletions
  1. 4 1
      day12/day12.go

+ 4 - 1
day12/day12.go

@@ -151,6 +151,10 @@ func navigate(sequences []sequence) int {
 	return currentPosition.north + currentPosition.south + currentPosition.east + currentPosition.west
 }
 
+func init() {
+	getDirections()
+}
+
 func main() {
 	if len(os.Args) < 2 {
 		log.Fatal("You need to specify a file!")
@@ -168,6 +172,5 @@ func main() {
 	}
 	file.Close()
 
-	getDirections()
 	fmt.Println("Part1:", navigate(sequences))
 }