AdventOfCode2021/day03/3a/main.go

73 lines
1.2 KiB
Go
Raw Normal View History

2021-12-03 19:40:58 +00:00
package main
import (
"bufio"
"fmt"
"math"
"os"
)
func main() {
content := returnContent("../input")
2021-12-16 19:55:49 +00:00
//content := returnContent("../testInput")
2021-12-03 19:40:58 +00:00
gamma, epsilon := findGammaAndEpsilon(content)
fmt.Println(binaryToInteger(gamma) * binaryToInteger(epsilon))
}
func findGammaAndEpsilon(content *[]string) (gamma string, epsilon string) {
for i := 0; i < len((*content)[1]); i++ {
count := 0
//Loop through list checking index[i] for each string
for j := 0; j < len(*content); j++ {
if ((*content)[j])[i] == '1' {
count++
}
}
if count >= len(*content)/2 {
gamma += "1"
epsilon += "0"
} else {
gamma += "0"
epsilon += "1"
}
}
return
}
func binaryToInteger(input string) (value int) {
n := 0
for i := len(input) - 1; i >= 0; i-- {
if input[i] == '1' {
value += (int(math.Pow(float64(2), float64(n))))
}
n++
}
return
}
func returnContent(path string) *[]string {
//read file and return it as an array of integers
file, err := os.Open(path)
var content []string
if err != nil {
fmt.Println("Unlucky, the file didn't open")
return &content
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
content = append(content, scanner.Text())
}
return &content
}