Advent of Code F# – Day 12

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.

 

With the way Part 1 is phrased, it means we don’t actually have to understand the JSON document itself – we can cheat by regex out all the numbers and simply add them up! 

day12_01

 

Part 2

This part is slightly more challenging, but even so we still don’t necessarily have to understand the JSON document – we just need to find the scope of the object (as defined by matched { and }) that has a property value “red”.

So let’s define two functions – findBoundaryL and findBoundaryR – that can find the left (the open { ) and right (the closing } ) boundaries of the object that has a “red” property (as determined by the starting index):

day12_02

The logic for findBoundary is perhaps slightly convoluted/abstract, so let’s go through it:

  • given some direction (+/- 1) that we’re traversing through the input, and starting with 1 open door behind us;
  • if we saw an open door, then recurse by incrementing the accumulated number of open doors by 1
  • if we saw a closed door, then recurse by decrementing the accumulated number of open doors by 1
  • otherwise, just recurse with the current number of open doors
  • when the accumulated number of open doors is down to 0, it means we’ve managed to close all the open doors behind us, and therefore discovered the index of the close door that matches the initial open door

For example, if “red” is at index 102, and we’re trying to find the closing } for the object, then starting from 102, we’ll iterate through the chars to the right of 102:

…:”red”, “b”:{“c”:42,”d”:”42″},”e”:8},…

starting with index = 102, acc = 1

index = 113, saw ‘{‘, acc incremented to 2

index = 129, saw ‘}’, acc decremented to 1

index = 136, saw ‘}’, acc decremented to 0

acc = 0, right boundary is at index 136

repeat the same process in reverse to find the position of the opening { for this object.

 

Now we can find the boundaries of objects that has a “red” property:

day12_03

and use this information to filter out numbers that are part of any of these objects (i.e. the number is inside any of these boundaries):

day12_04


 

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.

 


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

  1. Pingback: F# Weekly #52, 2015 | Sergey Tihon's Blog

Leave a Comment

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