-
Notifications
You must be signed in to change notification settings - Fork 8
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
12 changed files
with
604 additions
and
218 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
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,66 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Day 3 - Advent of Code 2024</title> | ||
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:300&subset=latin,latin-ext' rel='stylesheet' | ||
type='text/css'> | ||
<link rel="stylesheet" type="text/css" href="../../static/style.css" /> | ||
<link rel="stylesheet alternate" type="text/css" href="../../static/highcontrast.css" title="High Contrast" /> | ||
<link rel="shortcut icon" href="../../static/favicon.png" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div> | ||
<h1 class="title-global"><a href="index.html">Advent of Code</a></h1> | ||
<nav> | ||
<ul> | ||
<li><a href="events.html">[Events]</a></li> | ||
<li><a href="leaderboard.html">[Leaderboard]</a></li> | ||
<li><a href="solver.html">[Solver]</a></li> | ||
</ul> | ||
</nav> | ||
<div class="user">Shahar Talmi <a class="supporter-badge" title="Advent of Code Supporter">(AoC++)</a> <a | ||
href="https://www.wix.engineering/" target="_blank" class="sponsor-badge" | ||
title="Member of sponsor: Wix Engineering">(Sponsor)</a> <span class="star-count">6*</span></div> | ||
</div> | ||
<div> | ||
<h1 class="title-event"> <span class="title-event-wrap">$year=</span><a | ||
href="index.html">2024</a><span class="title-event-wrap">;</span></h1> | ||
</div> | ||
</header> | ||
<main> | ||
<article class="day-desc"><h2>--- Day 3: Mull It Over ---</h2><p>"Our computers are having issues, so I have no idea if we have any Chief Historians <span title="There's a spot reserved for Chief Historians between the green toboggans and the red toboggans. They've never actually had any Chief Historians in stock, but it's best to be prepared.">in stock</span>! You're welcome to check the warehouse, though," says the mildly flustered shopkeeper at the <a href="/2020/day/2">North Pole Toboggan Rental Shop</a>. The Historians head out to take a look.</p> | ||
<p>The shopkeeper turns to you. "Any chance you can see why our computers are having issues again?"</p> | ||
<p>The computer appears to be trying to run a program, but its memory (your puzzle input) is <em>corrupted</em>. All of the instructions have been jumbled up!</p> | ||
<p>It seems like the goal of the program is just to <em>multiply some numbers</em>. It does that with instructions like <code>mul(X,Y)</code>, where <code>X</code> and <code>Y</code> are each 1-3 digit numbers. For instance, <code>mul(44,46)</code> multiplies <code>44</code> by <code>46</code> to get a result of <code>2024</code>. Similarly, <code>mul(123,4)</code> would multiply <code>123</code> by <code>4</code>.</p> | ||
<p>However, because the program's memory has been corrupted, there are also many invalid characters that should be <em>ignored</em>, even if they look like part of a <code>mul</code> instruction. Sequences like <code>mul(4*</code>, <code>mul(6,9!</code>, <code>?(12,34)</code>, or <code>mul ( 2 , 4 )</code> do <em>nothing</em>.</p> | ||
<p>For example, consider the following section of corrupted memory:</p> | ||
<pre><code>x<em>mul(2,4)</em>%&mul[3,7]!@^do_not_<em>mul(5,5)</em>+mul(32,64]then(<em>mul(11,8)mul(8,5)</em>)</code></pre> | ||
<p>Only the four highlighted sections are real <code>mul</code> instructions. Adding up the result of each instruction produces <code><em>161</em></code> (<code>2*4 + 5*5 + 11*8 + 8*5</code>).</p> | ||
<p>Scan the corrupted memory for uncorrupted <code>mul</code> instructions. <em>What do you get if you add up all of the results of the multiplications?</em></p> | ||
</article> | ||
<p>Your puzzle answer was <code>160672468</code>.</p><article class="day-desc"><h2 id="part2">--- Part Two ---</h2><p>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.</p> | ||
<p>There are two new instructions you'll need to handle:</p> | ||
<ul> | ||
<li>The <code>do()</code> instruction <em>enables</em> future <code>mul</code> instructions.</li> | ||
<li>The <code>don't()</code> instruction <em>disables</em> future <code>mul</code> instructions.</li> | ||
</ul> | ||
<p>Only the <em>most recent</em> <code>do()</code> or <code>don't()</code> instruction applies. At the beginning of the program, <code>mul</code> instructions are <em>enabled</em>.</p> | ||
<p>For example:</p> | ||
<pre><code>x<em>mul(2,4)</em>&mul[3,7]!^<em>don't()</em>_mul(5,5)+mul(32,64](mul(11,8)un<em>do()</em>?<em>mul(8,5)</em>)</code></pre> | ||
<p>This corrupted memory is similar to the example from before, but this time the <code>mul(5,5)</code> and <code>mul(11,8)</code> instructions are <em>disabled</em> because there is a <code>don't()</code> instruction before them. The other <code>mul</code> instructions function normally, including the one at the end that gets re-<em>enabled</em> by a <code>do()</code> instruction.</p> | ||
<p>This time, the sum of the results is <code><em>48</em></code> (<code>2*4 + 8*5</code>).</p> | ||
<p>Handle the new instructions; <em>what do you get if you add up all of the results of just the enabled multiplications?</em></p> | ||
</article> | ||
<p>Your puzzle answer was <code>84893551</code>.</p><p class="day-success">Both parts of this puzzle are complete! They provide two gold stars: **</p> | ||
<p>At this point, you should <a href="index.html">return to your Advent calendar</a> and try another puzzle.</p> | ||
<p>If you still want to see it, you can <a href="day03.txt" target="_blank">get your puzzle input</a>.</p> | ||
<p>You can also <span class="share">[Share<span class="share-content">on | ||
<a href="https://bsky.app/intent/compose?text=I%27ve+completed+%22Mull+It+Over%22+%2D+Day+3+%2D+Advent+of+Code+2024+%23AdventOfCode+https%3A%2F%2Fadventofcode%2Ecom%2F2024%2Fday%2F3" target="_blank">Bluesky</a> | ||
<a href="https://twitter.com/intent/tweet?text=I%27ve+completed+%22Mull+It+Over%22+%2D+Day+3+%2D+Advent+of+Code+2024&url=https%3A%2F%2Fadventofcode%2Ecom%2F2024%2Fday%2F3&related=ericwastl&hashtags=AdventOfCode" target="_blank">Twitter</a> | ||
<a href="javascript:void(0);" onclick="var ms; try{ms=localStorage.getItem('mastodon.server')}finally{} if(typeof ms!=='string')ms=''; ms=prompt('Mastodon Server?',ms); if(typeof ms==='string' && ms.length){this.href='https://'+ms+'/share?text=I%27ve+completed+%22Mull+It+Over%22+%2D+Day+3+%2D+Advent+of+Code+2024+%23AdventOfCode+https%3A%2F%2Fadventofcode%2Ecom%2F2024%2Fday%2F3';try{localStorage.setItem('mastodon.server',ms);}finally{}}else{return false;}" target="_blank">Mastodon</a | ||
></span>]</span> this puzzle.</p> | ||
</main> | ||
</body> | ||
</html> |
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,16 @@ | ||
export function part1(input) { | ||
const result = input.matchAll(/mul\((\d+),(\d+)\)/g).map(x => x[1] * x[2]); | ||
return result.reduce((a, b) => a + b, 0); | ||
} | ||
|
||
export function part2(input) { | ||
const result = input.matchAll(/mul\((\d+),(\d+)\)|do\(\)|don't\(\)/g); | ||
let enabled = true; | ||
let sum = 0; | ||
for (const x of result) { | ||
if (x[0] === "do()") enabled = true; | ||
if (x[0] === "don't()") enabled = false; | ||
if (enabled && x[0].startsWith("mul(")) sum += x[1] * x[2]; | ||
} | ||
return sum; | ||
} |
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,38 @@ | ||
import { part1, part2 } from "./day03.js"; | ||
import readInput from "../utils/read-input.js"; | ||
|
||
const input = readInput(import.meta.url); | ||
|
||
describe("day03 2024", () => { | ||
describe("part1", () => { | ||
test("it should work for part 1 examples", () => { | ||
expect( | ||
part1( | ||
[ | ||
"xmul(2,4)%&mul[3,7]!@^do_not_mul(5,5)+mul(32,64]then(mul(11,8)mul(8,5))", | ||
].join("\n"), | ||
), | ||
).toEqual(161); | ||
}); | ||
|
||
test("it should work for part 1 input", () => { | ||
expect(part1(input)).toEqual(160672468); | ||
}); | ||
}); | ||
|
||
describe("part2", () => { | ||
test("it should work for part 2 examples", () => { | ||
expect( | ||
part2( | ||
[ | ||
"xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))", | ||
].join("\n"), | ||
), | ||
).toEqual(48); | ||
}); | ||
|
||
test("it should work for part 2 input", () => { | ||
expect(part2(input)).toEqual(84893551); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.