Compare commits

...

2 Commits

Author SHA1 Message Date
Araozu 872f7e629d Print all solutions.
So that I can perceive the effects of my code's performance
2024-02-24 21:17:52 -05:00
Araozu 7a356e8734 Day 1 part 2 2024-02-24 21:13:14 -05:00
2 changed files with 37 additions and 7 deletions

View File

@ -1,7 +1,11 @@
package main
import "advent-20/solutions"
import (
"advent-20/solutions"
"fmt"
)
func main() {
solutions.Day01Part01()
fmt.Println("Day 01 part 1:\t", solutions.Day01Part01(false))
fmt.Println("Day 01 part 2:\t", solutions.Day01Part02(false))
}

View File

@ -1,13 +1,12 @@
package solutions
import (
"fmt"
"strconv"
"strings"
)
func Day01Part01() {
input := ReadInput("01", true)
func Day01Part01(isTest bool) int {
input := ReadInput("01", isTest)
values := strings.Split(input, "\n")
remainders := make(map[int]bool)
@ -20,10 +19,37 @@ func Day01Part01() {
currentRemainder := 2020 - value
if _, err := remainders[currentRemainder]; err {
fmt.Println(value * currentRemainder)
break
return value * currentRemainder
} else {
remainders[value] = true
}
}
return -1
}
func Day01Part02(isTest bool) int {
input := ReadInput("01", isTest)
strValues := strings.Split(input, "\n")
values := make([]int, len(strValues))
for i, valueStr := range strValues {
value, err := strconv.Atoi(valueStr)
if err != nil {
panic("Error converting to int")
}
values[i] = value
}
arrLen := len(values)
for i := 0; i < arrLen; i += 1 {
for j := i + 1; j < arrLen; j += 1 {
for k := j + 1; k < arrLen; k += 1 {
if values[i]+values[j]+values[k] == 2020 {
return (values[i] * values[j] * values[k])
}
}
}
}
return -1
}