|
| 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