Advent of Code F# – Day 11

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.

 

First, let’s encapsulate the three password requirements:

1) Passwords must include one increasing straight of at least three letters, like abc, bcd, cde, and so on, up to xyz. They cannot skip letters; abd doesn’t count.

day11_01

2) Passwords may not contain the letters i, o, or l, as these letters can be mistaken for other characters and are therefore confusing.

day11_02

3) Passwords must contain at least two different, non-overlapping pairs of letters, like aa, bb, or zz.

day11_03

Any valid password would need to satisfy all three requirements:

day11_04

Now that’s taken care of, let’s focus on the matter of increasing the password:

day11_05

here we have broken up the logic into two smaller chunks:

  • incrChar is responsible for return the incremented characters, and looping from ‘z’ to ‘a’
  • incrAt increments the char at the specified index, and recurses to increment the next index if the aforementioned char loops around

Finally, let’s generate the sequence of all future passwords with an unfold, and find the first one that is a valid password:

day11_06

 

Part 2

Almost identical to Part 1, the only change is to skip the first valid password after the initial input:

day11_07


 

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 11”

  1. Here’s a fun trick I just learned. If you have a char c, you can increment it with (c + ‘x01’).

Leave a Comment

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