Print all solutions.

So that I can perceive the effects of my code's performance
master
Araozu 2024-02-24 21:17:52 -05:00
parent 7a356e8734
commit 872f7e629d
2 changed files with 16 additions and 11 deletions

View File

@ -1,7 +1,11 @@
package main
import "advent-20/solutions"
import (
"advent-20/solutions"
"fmt"
)
func main() {
solutions.Day01Part02()
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,16 +19,17 @@ 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() {
input := ReadInput("01", false)
func Day01Part02(isTest bool) int {
input := ReadInput("01", isTest)
strValues := strings.Split(input, "\n")
values := make([]int, len(strValues))
for i, valueStr := range strValues {
@ -45,10 +45,11 @@ func Day01Part02() {
for j := i + 1; j < arrLen; j += 1 {
for k := j + 1; k < arrLen; k += 1 {
if values[i]+values[j]+values[k] == 2020 {
fmt.Println(values[i] * values[j] * values[k])
return
return (values[i] * values[j] * values[k])
}
}
}
}
return -1
}