Advent of Code F# – Day 10

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

ps. look out for all my other solutions for Advent of Code challenges here.

 

Day 10

See details of the challenge here.

The input for today’s challenge looks like this:

bot 171 gives low to bot 4 and high to bot 84
bot 1 gives low to bot 117 and high to bot 81
bot 82 gives low to bot 209 and high to bot 103
bot 128 gives low to bot 56 and high to bot 91
value 23 goes to bot 8
bot 7 gives low to bot 148 and high to bot 22

To parse this input file, it feels to me that Regex is the best bet; and to answer the challenge we can run the simulation until one of the bots have both value-17 and value-61 chips.

The bulk of the work happens in the definition for the events sequence. I decided to use a Dictionary  to track the current state of the bots, but I didn’t want to expose that mutability to the outside hence why it was declare inside the definition for events.

Ultimately events is a sequence of tuples telling us which bot gave low and hi values to which targets as we simulate the behaviour of the bots. It makes answering both parts of the challenge really simple.

 

Part 2

What do you get if you multiply together the values of one chip in each of
outputs 0, 1, and 2?

We can consume the same events sequence we created earlier, and collect any values that are given to output 0, 1 and 2 and multiply them.

 

Links

Whenever you’re ready, here are 4 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

1 thought on “Advent of Code F# – Day 10”

  1. Pingback: Advent of Code F# – Day 21 | theburningmonk.com

Leave a Comment

Your email address will not be published. Required fields are marked *