-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
304 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
pull_request: | ||
|
||
env: | ||
SKIP_SLOW_TESTS: true | ||
RUN_SLOW_TESTS: 0 | ||
|
||
jobs: | ||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# [Day 3: Mull It Over](https://adventofcode.com/2024/day/3) | ||
|
||
## Part One | ||
|
||
"Our computers are having issues, so I have no idea if we have any Chief Historians in stock! You're welcome to check the warehouse, though," says the mildly flustered shopkeeper at the [North Pole Toboggan Rental Shop](https://adventofcode.com/2020/day/2). The Historians head out to take a look. | ||
|
||
The shopkeeper turns to you. "Any chance you can see why our computers are having issues again?" | ||
|
||
The computer appears to be trying to run a program, but its memory (your puzzle input) is **corrupted**. All the instructions have been jumbled up! | ||
|
||
It seems like the goal of the program is just to **multiply some numbers**. It does that with instructions like `mul(X,Y)`, where `X` and `Y` are each 1-3 digit numbers. For instance, `mul(44,46)` multiplies `44` by `46` to get a result of `2024`. Similarly, `mul(123,4)` would multiply `123` by `4`. | ||
|
||
However, because the program's memory has been corrupted, there are also many invalid characters that should be ignored, even if they look like part of a `mul` instruction. Sequences like `mul(4*`, `mul(6,9!`, `?(12,34)`, or `mul ( 2 , 4 )` do **nothing**. | ||
|
||
For example, consider the following section of corrupted memory: | ||
|
||
`x` `mul(2,4)` `%&mul[3,7]!@^do_not_` `mul(5,5)` `+mul(32,64]then(` `mul(11,8)mul(8,5)` `)` | ||
|
||
Only the four highlighted sections are real `mul` instructions. Adding up the result of each instruction produces **`161`** `(2*4 + 5*5 + 11*8 + 8*5)`. | ||
|
||
Scan the corrupted memory for uncorrupted mul instructions. **What do you get if you add up all the results of the multiplications?** | ||
|
||
To play, please identify yourself via one of these services: | ||
|
||
Your puzzle answer was `173,529,487`. | ||
|
||
**The first half of this puzzle is complete! It provides one gold star:** 🌟 | ||
|
||
## Part Two | ||
|
||
As you scan through the corrupted memory, you notice that some of the conditional statements are also still intact. If you handle some of the uncorrupted conditional statements in the program, you might be able to get an even more accurate result. | ||
|
||
There are two new instructions you'll need to handle: | ||
|
||
- The `do()` instruction **enables** future `mul` instructions. | ||
- The `don't()` instruction disables future `mul` instructions. | ||
|
||
Only the **most recent** `do()` or `don't()` instruction applies. At the beginning of the program, `mul` instructions are **enabled**. | ||
|
||
For example: | ||
|
||
`x` `mul(2,4)` `&mul[3,7]!^` `don't()` `_mul(5,5)+mul(32,64](mul(11,8)un` `do()` `?` `mul(8,5)` `)` | ||
|
||
This corrupted memory is similar to the example from before, but this time the `mul(5,5)` and `mul(11,8)` instructions are **disabled** because there is a `don't()` instruction before them. The other `mul` instructions function normally, including the one at the end that gets re-**enabled** by a `do()` instruction. | ||
|
||
This time, the sum of the results is **`48`** `(2*4 + 8*5)`. | ||
|
||
Handle the new instructions; **what do you get if you add up all the results of just the enabled multiplications?** | ||
|
||
Your puzzle answer was `99,532,691`. | ||
|
||
**Both parts of this puzzle are complete! They provide two gold stars:** 🌟🌟 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "part1" | ||
require_relative "part2" | ||
|
||
module AdventOfCode | ||
module Puzzles2024 | ||
## | ||
# {include:file:lib/puzzles/2024/day03/README.md} | ||
module Day03 | ||
end | ||
end | ||
end |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# frozen_string_literal: true | ||
|
||
module AdventOfCode | ||
module Puzzles2024 | ||
module Day03 | ||
## | ||
# Class for solving Day 3 (2024) - Part 1 puzzle | ||
class Part1 | ||
## | ||
# The program memory | ||
# @return [String] the memory | ||
attr_reader :memory | ||
|
||
## | ||
# @param file [String|nil] file with puzzle input | ||
def initialize(file: nil) | ||
file ||= "#{File.dirname(__FILE__)}/input.txt" | ||
init_contents File.readlines(file, chomp: true) | ||
end | ||
|
||
## | ||
# Compute the answer for the puzzle. | ||
# @return [Integer] answer for the puzzle | ||
def answer | ||
ops = find_valid_ops | ||
compute_ops(ops) | ||
end | ||
|
||
protected | ||
|
||
## | ||
# Initialize the class' contents from the file contents. | ||
def init_contents(file_contents) | ||
@memory = file_contents.join | ||
end | ||
|
||
## | ||
# Find all valid operations in the memory | ||
# @return [Array<String>] the valid operations | ||
def find_valid_ops | ||
matches = memory.scan(%r{mul\(\d{1,3},\d{1,3}\)}) | ||
matches.map(&:to_s) | ||
end | ||
|
||
## | ||
# Sum the results of all operations | ||
# @param ops [Array<String>] the operations to sum | ||
# @return [Integer] the sum of all operations | ||
def compute_ops(ops) | ||
result = 0 | ||
ops.each do |op| | ||
result += ::Regexp.last_match(1).to_i * ::Regexp.last_match(2).to_i if op =~ %r{(\d+),(\d+)} | ||
end | ||
|
||
result | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "part1" | ||
|
||
module AdventOfCode | ||
module Puzzles2024 | ||
module Day03 | ||
## | ||
# Class for solving Day 3 (2024) - Part 2 puzzle | ||
class Part2 < Part1 | ||
protected | ||
|
||
## | ||
# Find all valid operations in the memory | ||
# @return [Array<String>] the valid operations | ||
def find_valid_ops | ||
matches = memory.scan(%r{mul\(\d{1,3},\d{1,3}\)|do(?:n't)?\(\)}) | ||
filter_ops matches.map(&:to_s) | ||
end | ||
|
||
## | ||
# Filter valid operations regarding the enabled flag, | ||
# which is set by the do() and don't() operations. | ||
# @param ops [Array<String>] the operations to filter | ||
def filter_ops(ops) | ||
valid_ops = [] | ||
enabled = true | ||
ops.each do |op| | ||
if op == "do()" | ||
enabled = true | ||
next | ||
elsif op == "don't()" | ||
enabled = false | ||
next | ||
end | ||
|
||
valid_ops << op if enabled | ||
end | ||
valid_ops | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module AdventOfCode | ||
module Puzzles2024 | ||
module Day03 | ||
class Part1 | ||
attr_reader memory: String | ||
|
||
def initialize: (file: String?) -> void | ||
|
||
def answer: () -> Integer | ||
def init_contents: (Array[String]) -> void | ||
def find_valid_ops: () -> Array[String] | ||
def compute_ops: (Array[String]) -> Integer | ||
end | ||
|
||
class Part2 < Part1 | ||
def filter_ops: (Array[String]) -> Array[String] | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module AdventOfCode | ||
module Test | ||
module Puzzles2024 | ||
module Day03 | ||
class Part1Test < MiniTest::Test | ||
def test_part1_answer_real_set: -> untyped | ||
def test_part1_answer_test_set: -> untyped | ||
end | ||
|
||
class Part2Test < MiniTest::Test | ||
def test_part2_answer_real_set: -> untyped | ||
def test_part2_answer_test_set: -> untyped | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# frozen_string_literal: true | ||
|
||
require "test_helper" | ||
require "puzzles/2024/day03/day03" | ||
|
||
module AdventOfCode | ||
module Test | ||
module Puzzles2024 | ||
module Day03 | ||
## | ||
# Tests Day 3 (2024) - Part 1 | ||
class Part1Test < Minitest::Test | ||
def setup | ||
# Do nothing | ||
end | ||
|
||
def teardown | ||
# Do nothing | ||
end | ||
|
||
def test_part1_answer_test_set | ||
input_file = "#{File.dirname(__FILE__)}/test_data_part1.txt" | ||
puzzle = AdventOfCode::Puzzles2024::Day03::Part1.new(file: input_file) | ||
|
||
assert_equal 161, puzzle.answer | ||
end | ||
|
||
def test_part1_answer_real_set | ||
puzzle = AdventOfCode::Puzzles2024::Day03::Part1.new | ||
|
||
assert_equal 173_529_487, puzzle.answer | ||
end | ||
end | ||
|
||
## | ||
# Tests Day 3 (2024) - Part 2 | ||
class Part2Test < Minitest::Test | ||
def setup | ||
# Do nothing | ||
end | ||
|
||
def teardown | ||
# Do nothing | ||
end | ||
|
||
def test_part2_answer_test_set | ||
input_file = "#{File.dirname(__FILE__)}/test_data_part2.txt" | ||
puzzle = AdventOfCode::Puzzles2024::Day03::Part2.new(file: input_file) | ||
|
||
assert_equal 48, puzzle.answer | ||
end | ||
|
||
def test_part2_answer_real_set | ||
puzzle = AdventOfCode::Puzzles2024::Day03::Part2.new | ||
|
||
assert_equal 99_532_691, puzzle.answer | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
xmul(2,4)%&mul[3,7]!@^do_not_mul(5,5)+mul(32,64]then(mul(11,8)mul(8,5)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5)) |