-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
91 lines (68 loc) · 1.31 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package main
import (
"fmt"
"slices"
"strconv"
"strings"
"github.com/believer/aoc-2024/utils"
"github.com/believer/aoc-2024/utils/files"
)
// Will come back later on today and see what I can improve on
func main() {
fmt.Println("Part 1: ", part1("input.txt"))
fmt.Println("Part 2: ", part2("input.txt"))
}
func part1(name string) int {
lines := files.ReadLines(name)
left := []int{}
right := []int{}
total := 0
for _, line := range lines {
row := strings.Split(line, " ")
l, err := strconv.Atoi(row[0])
if err != nil {
panic(err)
}
r, err := strconv.Atoi(row[1])
if err != nil {
panic(err)
}
left = append(left, l)
right = append(right, r)
}
slices.Sort(left)
slices.Sort(right)
for i, l := range left {
total += utils.Abs(l - right[i])
}
return total
}
func part2(name string) int {
lines := files.ReadLines(name)
left := []int{}
right := []int{}
total := 0
for _, line := range lines {
row := strings.Split(line, " ")
l, err := strconv.Atoi(row[0])
if err != nil {
panic(err)
}
r, err := strconv.Atoi(row[1])
if err != nil {
panic(err)
}
left = append(left, l)
right = append(right, r)
}
for _, l := range left {
appears := 0
for _, r := range right {
if l == r {
appears += 1
}
}
total += l * appears
}
return total
}