Module aoc::y15d11

source ·
Expand description

Advent of Code 2015 Day 11: https://adventofcode.com/2015/day/11

This was fairly simple to implement and wasn’t too challenging but the solution ended up being rather long and verbose. The solution doesn’t use strings or regular expressions but operations instead on vectors of code points and so the magic numbers found within correspond to the several characters that we need to know about: a: 97, z: 122, i: 105, l: 108, and o: 111.

Functions§

  • The solution for the day eleven challenge.