Piotr Czajkowski 4 lat temu
rodzic
commit
155a81fe45
1 zmienionych plików z 3 dodań i 10 usunięć
  1. 3 10
      day16/day16.go

+ 3 - 10
day16/day16.go

@@ -47,7 +47,7 @@ func readTicket(line string) {
 
 func readFile(file *os.File) {
 	scanner := bufio.NewScanner(file)
-	index := 0
+	currentFunction := readRule
 	for scanner.Scan() {
 		line := scanner.Text()
 		if line == "" {
@@ -55,7 +55,7 @@ func readFile(file *os.File) {
 		}
 
 		if strings.Contains(line, "your ticket:") {
-			index++
+			currentFunction = readTicket
 			continue
 		}
 
@@ -63,20 +63,13 @@ func readFile(file *os.File) {
 			continue
 		}
 
-		functions[index](line)
+		currentFunction(line)
 	}
 	if err := scanner.Err(); err != nil {
 		log.Fatalf("Scanner error: %s", err)
 	}
 }
 
-var functions []func(string)
-
-func init() {
-	functions = append(functions, readRule)
-	functions = append(functions, readTicket)
-}
-
 func main() {
 	if len(os.Args) < 2 {
 		log.Fatal("You need to specify a file!")