Advent of Code F# – Day 6

Yan Cui

I help clients go faster for less using serverless technologies.

Table of Content

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

 

Day 6

See details of the challenge here.

The input for today’s challenge looks like this:

cmezkqgn
nmzrgcft
ydpndcps
zjihhows
kvptxsrx
ubbvugwq

Since the only difference between the 2 parts of this challenge is how the characters in a column are sorted by count, so we can capture the common flow to solving both parts in a solve function below.

Let’s walk through what’s happening here step by step.

  1. first we collect all the characters of each column into a seq<char[]>
  2. then for each char[] we
    1. group by the chars by itself
    2. map the resuling seq<char * seq<char>> into a sequence of char and count, ie seq<char * int>
    3. use the supplied sortBy function to sort this sequence by count
    4. take the first (most common/least common depending on the sortBy function)
    5. return the char
  3. stich the chars together into a good old fashioned string

 

So now, solving part 1 is a simple one-liner:

solve Seq.sortByDescending

 

Part 2

Of course, that would be the message – if you hadn’t agreed to use a modified
repetition code instead.

In this modified code, the sender instead transmits what looks like random data,
but for each character, the character they actually want to send is slightly
less likely than the others. Even after signal-jamming noise, you can look at
the letter distributions in each column and choose the least common letter to
reconstruct the original message.

In the above example, the least common character in the first column is a; in
the second, d, and so on. Repeating this process for the remaining characters
produces the original message, advent.

Given the recording in your puzzle input and this new decoding methodology, what
is the original message that Santa is trying to send?

Because of the work we had done earlier, solving part 2 is also a one-liner:

solve Seq.sortBy

 

Links


 

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.

 


Leave a Comment

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