Files
ocaml-aoc/bin
Matthew Gretton-Dann 799a25464b Do not use a set to record blocks in 2406.ml
Instead of using a set of locations to store the blocks in day2406.ml
return to using a string.

Sets have an O(lg n) lookup time in number of blocks.

Instead we use a single string which contains the whole map, which means
we can do O(1) lookup on a block.  This significantly improves
performance.
2024-12-07 10:12:50 +00:00
..
2024-12-06 15:42:18 +00:00
2024-12-03 16:32:14 +00:00
2024-12-04 16:28:58 +00:00
2024-12-06 15:42:18 +00:00
2024-12-07 07:29:03 +00:00
2024-12-07 07:29:03 +00:00