Advent of Code F# – Day 21

Yan Cui

I help clients go faster for less using serverless technologies.

The source code for this post (both Part 1 and Part 2) is available here and you can click here to see my solutions for the other Advent of Code challenges.

Description for today’s challenge is here.

 

Modelling and simulating a RPG, this challenge totally got my nerd brain into overdrive, which is probably why I went totally overboard with modelling the domain! (you’ll see soon enough..)

Modelling

First we have characters in the game (you and the boss) with hit points (HP), damage and armor scores:

day21_01

Then we have the equipments, which have costs, as well as damage and armor stats:

day21_02

Then we also have shops, who sell these equipments:

day21_03

Configurations

Initially, you have 100 Hit Points, but no damage or armor stats (these come from equipments).

The state of the boss comes from your input:

day21_04

We also need to configure the shop’s inventory according to the description of the challenge:

day21_05

Simulation

From the description, we know that:

  • you have to pick one weapon
  • you can have 0-1 armor
  • you can have 0-2 rings

So, to make combining equipments easier later on (we want your selection of equipments to be a simple Equipment[]), let’s create a few sequences of Equipment[] to represent your choices of weapons, armors and rings.

For weapons and armors, this is pretty straightforward:

day21_06

For rings, it’s slightly more involved:

day21_07

Because the ordering of the rings are not important – [| ring1; ring2 |] is the same as [| ring2; ring1 |] – so here we work out all combinations of 2 rings from the available 6.

Next, let’s work out all possible equipment combinations we can buy from the shop:

day21_08

We’ll also need to be able to simulate a game between you and the boss:

day21_12

Notice in the inner recursive loop above, we swap the role of the attacker and defender on every iteration (whilst also deducting the defender’s HP) and return the name of the winner when the defender’s HP reaches 0<HP>.

Now that all the pieces are in place, we can answer the challenge by iterating over all equipment combos, and sending you in battle with the boss with each. For the combos that results in you winning, we simply work out the cost and find the min:

day21_10

job done!

 

Part 2

Only a minor tweak is required here – change the winner to “boss” and look for max cost instead of min:

day21_11

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.

2 thoughts on “Advent of Code F# – Day 21”

  1. Yan, I’ve been really enjoying the advent of code blog posts but I can’t find where the challenges are coming from. Could you share the link?

Leave a Comment

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