comparison day1.txt @ 0:76cc43966538

Start https://adventofcode.com/2023/day/1 in Ruby Part B was nasty because it didn't explain how to handle overlapping numbers, which was occasionally important for the last number.
author IBBoard <dev@ibboard.co.uk>
date Fri, 01 Dec 2023 20:00:22 +0000
parents
children 1e16a25a9553
comparison
equal deleted inserted replaced
-1:000000000000 0:76cc43966538
1 --- Day 1: Trebuchet?! ---
2
3 Something is wrong with global snow production, and you've been selected to take a look. The Elves have even given you a map; on it, they've used stars to mark the top fifty locations that are likely to be having problems.
4
5 You've been doing this long enough to know that to restore snow operations, you need to check all fifty stars by December 25th.
6
7 Collect stars by solving puzzles. Two puzzles will be made available on each day in the Advent calendar; the second puzzle is unlocked when you complete the first. Each puzzle grants one star. Good luck!
8
9 You try to ask why they can't just use a weather machine ("not powerful enough") and where they're even sending you ("the sky") and why your map looks mostly blank ("you sure ask a lot of questions") and hang on did you just say the sky ("of course, where do you think snow comes from") when you realize that the Elves are already loading you into a trebuchet ("please hold still, we need to strap you in").
10
11 As they're making the final adjustments, they discover that their calibration document (your puzzle input) has been amended by a very young Elf who was apparently just excited to show off her art skills. Consequently, the Elves are having trouble reading the values on the document.
12
13 The newly-improved calibration document consists of lines of text; each line originally contained a specific calibration value that the Elves now need to recover. On each line, the calibration value can be found by combining the first digit and the last digit (in that order) to form a single two-digit number.
14
15 For example:
16
17 1abc2
18 pqr3stu8vwx
19 a1b2c3d4e5f
20 treb7uchet
21
22 In this example, the calibration values of these four lines are 12, 38, 15, and 77. Adding these together produces 142.
23
24 Consider your entire calibration document. What is the sum of all of the calibration values?
25
26 --- Part Two ---
27
28 Your calculation isn't quite right. It looks like some of the digits are actually spelled out with letters: one, two, three, four, five, six, seven, eight, and nine also count as valid "digits".
29
30 Equipped with this new information, you now need to find the real first and last digit on each line. For example:
31
32 two1nine
33 eightwothree
34 abcone2threexyz
35 xtwone3four
36 4nineeightseven2
37 zoneight234
38 7pqrstsixteen
39
40 In this example, the calibration values are 29, 83, 13, 24, 42, 14, and 76. Adding these together produces 281.
41
42 What is the sum of all of the calibration values?
43
44
45
46
47 Undocumented: A line with "oneight" would become 18, despite the overlap, because "one" is the first number read from the start and "8" is the last number read from the end 😐