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. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


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 *