XWEEARPXLVNAC4HDK6T7PP3CSXBFFBV3ZRH4F5CY6YWLFFIJ7ZBAC ## Day 13I use an `std.AutoArrayHashMap` for storing the point on the map, it is a bitfaster to iterate through than `std.AutoHashMap`. Nothing special.## Day 14I store how often a given character pair appears in a `std.StringHashMap`. Inevery step I just create a new map based on the previous one.The second part takes ~15ms, this could be improved.