Browse Source

Able to read input

Piotr Czajkowski 2 weeks ago
parent
commit
60b7ae89bd
1 changed files with 68 additions and 0 deletions
  1. 68 0
      07/code.go

+ 68 - 0
07/code.go

@@ -0,0 +1,68 @@
+package main
+
+import (
+	"bufio"
+	"fmt"
+	"log"
+	"os"
+	"strconv"
+	"strings"
+)
+
+type Equation struct {
+	result  int
+	numbers []int
+}
+
+func readInput(file *os.File) []Equation {
+	scanner := bufio.NewScanner(file)
+	var equations []Equation
+
+	for scanner.Scan() {
+		line := scanner.Text()
+		if line == "" {
+			break
+		}
+
+		var equation Equation
+		parts := strings.Split(line, ": ")
+		if len(parts) != 2 {
+			log.Fatalf("Bad input: %s", line)
+		}
+
+		var err error
+		equation.result, err = strconv.Atoi(parts[0])
+		if err != nil {
+			log.Fatalf("Problem parsing '%s': %s", parts[0], err)
+		}
+
+		numbers := strings.Split(parts[1], " ")
+		for _, number := range numbers {
+			item, err := strconv.Atoi(number)
+			if err != nil {
+				log.Fatalf("Problem parsing '%s': %s", number, err)
+			}
+
+			equation.numbers = append(equation.numbers, item)
+		}
+
+		equations = append(equations, equation)
+	}
+
+	return equations
+}
+
+func main() {
+	if len(os.Args) < 2 {
+		log.Fatal("You need to specify a file!")
+	}
+
+	filePath := os.Args[1]
+	file, err := os.Open(filePath)
+	if err != nil {
+		log.Fatalf("Failed to open %s!\n", filePath)
+	}
+
+	equations := readInput(file)
+	fmt.Println(equations)
+}