Skip to content

Commit 2a15632

Browse files
feat(day01): solve part01
1 parent 348b05a commit 2a15632

File tree

6 files changed

+1092
-0
lines changed

6 files changed

+1092
-0
lines changed

2022-go/common/utils.go

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"os"
77
)
88

9+
// ReadAllLines reads all lines from a file and returns them as a slice of strings.
910
func ReadAllLines(filePath string) []string {
1011
file, err := os.Open(filePath)
1112

2023-go/day01/day01.go

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
package main
2+
3+
import (
4+
"github.com/maximiliantech/advent-of-code/2022-go/common"
5+
"log"
6+
"strconv"
7+
)
8+
9+
func main() {
10+
lines := common.ReadAllLines("../2023-go/day01/input.txt")
11+
log.Println("Day 01 Part 01")
12+
partOne(lines)
13+
log.Println("Day 01 Part 02")
14+
partTwo(lines)
15+
}
16+
17+
func partOne(lines []string) {
18+
var sum int
19+
for _, line := range lines {
20+
value := readCalibrationValue(line)
21+
sum += value
22+
}
23+
log.Println(sum)
24+
}
25+
26+
// readCalibrationValue reads the calibration value from a line.
27+
func readCalibrationValue(line string) int {
28+
var firstDigit int
29+
var lastDigit int
30+
for _, char := range line {
31+
char := int(char)
32+
// if char is a digit
33+
if isActualDigit(char) {
34+
firstDigit = char
35+
break
36+
}
37+
}
38+
for i := len(line) - 1; i >= 0; i-- {
39+
char := int(line[i])
40+
41+
// if char is a digit
42+
if isActualDigit(char) {
43+
lastDigit = char
44+
break
45+
}
46+
}
47+
n, _ := strconv.Atoi(string(rune(firstDigit)) + "" + string(rune(lastDigit)))
48+
return n
49+
}
50+
51+
func partTwo(lines []string) {
52+
var sum int
53+
for _, line := range lines {
54+
value := readCalibrationValue2(line)
55+
sum += value
56+
}
57+
log.Println(sum)
58+
}
59+
60+
// please create a function that solves the problem
61+
func readCalibrationValue2(line string) int {
62+
digits := map[string]int{
63+
"one": 1,
64+
"two": 2,
65+
"three": 3,
66+
"four": 4,
67+
"five": 5,
68+
"six": 6,
69+
"seven": 7,
70+
"eight": 8,
71+
"nine": 9,
72+
}
73+
74+
// search for first occurrence of spelled out digit or actual digit
75+
for i := 0; i < len(line); i++ {
76+
77+
}
78+
return 0
79+
}
80+
81+
func isActualDigit(char int) bool {
82+
return char >= '1' && char <= '9'
83+
}

0 commit comments

Comments
 (0)