changeset 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 49dd1ae93696
files day1.rb day1.txt day1b.rb
diffstat 3 files changed, 116 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/day1.rb	Fri Dec 01 20:00:22 2023 +0000
@@ -0,0 +1,20 @@
+#! /usr/bin/env ruby
+
+if ARGV.length != 1
+        abort("Incorrect arguments - pass a single file")
+elsif not File.exist? (ARGV[0])
+        abort ("File #{ARGV[0]} did not exist")
+end
+
+file = ARGV[0]
+sum = 0
+File.open(file, "r").each_line do |line|
+	match = /^[^0-9]*([0-9]).*?(([0-9])[^0-9]*)?$/.match(line)
+	if match
+		first_num = match[1].to_i
+		second_num = match[3].nil? ? first_num : match[3].to_i
+		sum += (first_num * 10) + second_num
+        end
+end
+
+puts sum
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/day1.txt	Fri Dec 01 20:00:22 2023 +0000
@@ -0,0 +1,47 @@
+--- Day 1: Trebuchet?! ---
+
+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.
+
+You've been doing this long enough to know that to restore snow operations, you need to check all fifty stars by December 25th.
+
+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!
+
+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").
+
+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.
+
+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.
+
+For example:
+
+1abc2
+pqr3stu8vwx
+a1b2c3d4e5f
+treb7uchet
+
+In this example, the calibration values of these four lines are 12, 38, 15, and 77. Adding these together produces 142.
+
+Consider your entire calibration document. What is the sum of all of the calibration values?
+
+--- Part Two ---
+
+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".
+
+Equipped with this new information, you now need to find the real first and last digit on each line. For example:
+
+two1nine
+eightwothree
+abcone2threexyz
+xtwone3four
+4nineeightseven2
+zoneight234
+7pqrstsixteen
+
+In this example, the calibration values are 29, 83, 13, 24, 42, 14, and 76. Adding these together produces 281.
+
+What is the sum of all of the calibration values?
+
+
+
+
+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 😐
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/day1b.rb	Fri Dec 01 20:00:22 2023 +0000
@@ -0,0 +1,49 @@
+#! /usr/bin/env ruby
+
+if ARGV.length != 1
+        abort("Incorrect arguments - pass a single file")
+elsif not File.exist? (ARGV[0])
+        abort ("File #{ARGV[0]} did not exist")
+end
+
+file = ARGV[0]
+sum = 0
+
+number_map = {
+	"one" => 1,
+	"two" => 2,
+	"three" => 3,
+	"four" => 4,
+	"five" => 5,
+	"six" => 6,
+	"seven" => 7,
+	"eight" => 8,
+	"nine" => 9
+}
+
+(1..9).each {|i| number_map[i.to_s] = i}
+
+File.open(file, "r").each_line do |line|
+	pos = line.length
+	value_1 = 0
+	number_map.each do |k,v| 
+		index = line.index(k)
+		if index and index < pos
+			value_1 = v
+			pos = index
+		end
+	end
+	pos = line.length
+	line.reverse!
+	value_2 = 0
+	number_map.each do |k,v| 
+		index = line.index(k.reverse)
+		if index and index < pos
+			value_2 = v
+			pos = index
+		end
+	end
+	sum += (value_1 * 10) + value_2
+end
+
+puts sum
\ No newline at end of file