Commit Graph

96 Commits

Author SHA1 Message Date
bert 9e37026f30 Remove unnecessary indexing 2021-12-14 19:54:45 +01:00
bert a926243f0d Improve "winning" logic
You don't need to check every possible win condition, just the one you
touched.
2021-12-14 19:51:57 +01:00
bert a35ae82548 Replace unnecessary HashMap and allocations 2021-12-14 19:39:00 +01:00
bert 8a0b72f111 Implementation day 14 2021 2021-12-14 09:25:38 +01:00
bert b5866b2d8a Modify points in-place
Thanks to skius from libera##rust for the idea
2021-12-13 22:55:14 +01:00
bert 554683bc64 Actually apply nom 2021-12-13 22:20:02 +01:00
bert 1031a8cdbb Avoid allocating the final buffer twice 2021-12-13 21:40:00 +01:00
bert 5c764f6627 Don't use silly hashsets 2021-12-13 21:34:48 +01:00
bert ffe8d27469 Clean up day 13 a little. 2021-12-13 08:52:57 +01:00
bert d471f170b3 Very dirty solution day 13 2021-12-13 08:50:00 +01:00
bert 07cbf6cf53 Fix upcoming clippy warning 2021-12-12 15:56:05 +01:00
bert 6e3252ce5a Add formal benchmarking code 2021-12-12 15:33:52 +01:00
bert 0897e2e907 Implement day 12 part 2 2021-12-12 11:31:54 +01:00
bert 4d1fdd9cc0 Implement day 12 part 1 2021-12-12 11:09:14 +01:00
bert 84c160cf54 Simplify part 2 2021-12-11 17:20:22 +01:00
bert 440d454911 Implement day 11 2021-12-11 13:56:10 +01:00
bert 50cd6d8171 Implementation day 10 2021 2021-12-10 10:46:02 +01:00
bert dde9c0adbf Update to RC version of clap
Deriving a parser has become an opt-in feature so we need to enable
that.
2021-12-09 12:14:15 +01:00
bert e0e1bc26e8 Simplify implementation day 8
The second part doesn't actually need to start the search at the low
points; just iterating everything and keeping track of visited spaces is
enough.

Now that the iterator is only used in part 1, we inline the iterator to
remove some overhead from the code.
2021-12-09 12:02:07 +01:00
bert 77ce31980b Implement day 9 2021-12-09 11:56:29 +01:00
bert 8c78106846 Bit-optimize day 8
The state of a seven segment display can be stored in a byte after all.
Using NonZeroU8 makes the Options smaller too.
2021-12-08 13:52:08 +01:00
bert 22f767e8df Implement day 08 2021 2021-12-08 13:31:33 +01:00
bert 3434966ac2 Just use the median, obviously 2021-12-07 13:22:43 +01:00
bert c5f66fcc09 Avoid more allocations in day 7 part 1 2021-12-07 11:41:19 +01:00
bert c02f1e11c5 Convert recursion to iteration 2021-12-07 11:00:26 +01:00
bert d099614217 Improve part 2 with binary search 2021-12-07 10:40:34 +01:00
bert 766ee91719 Brute-force day 7 part 2 2021-12-07 10:12:01 +01:00
bert 2f3eb50a5b Implement day 7 part 1 2021-12-07 09:45:58 +01:00
bert b369f9d36a Implement day 6 2021 2021-12-06 09:21:00 +01:00
bert 1433b0cdbe Implement day 5
Nom is really nice and fast, why did I write parsers manually before.
2021-12-05 11:31:14 +01:00
bert 5e52da6e6b Use iterator instead of range 2021-12-04 11:57:01 +01:00
bert e50b812aed Day 4: more efficiently ignore completed cards 2021-12-04 11:40:40 +01:00
bert fdef10a78e Less awkward line length hack 2021-12-04 11:28:32 +01:00
bert 392aefb32d Less allocations in day 3 part 2
By working with binary numbers as integers rather than byte strings, we
don't need to allocate a Vec for each of them, reducing us to just the
allocations in the outer Vec.
2021-12-04 11:13:54 +01:00
bert fb358be8f0 Implementation day 4 2021 2021-12-04 10:43:02 +01:00
bert 612d3ecb6b Tricky solution day 03, could possibly be improved 2021-12-03 09:21:13 +01:00
bert d08a4e0e4e Merge day 1 solutions 2021-12-02 18:50:26 +01:00
bert ed844a997c Create reusable line reader 2021-12-02 18:27:48 +01:00
bert c9468ba139 Implementation 2021 day 2 2021-12-02 08:21:49 +01:00
bert 938eda0d22 Rework day 1
Simplify part 2 a lot, by not actually computing the sums because they
do not matter, only the changes do. Also eliminate the allocation
overhead while parsing line-by-line input.

Fixes the existing clippy error because the offending line no longer
exists.
2021-12-01 20:35:27 +01:00
bert f413b08da6 Very quick implementation for day 1 2021-12-01 09:30:03 +01:00
bert 2e0a7ea81d Update READMEs for 2021. 2021-11-29 20:31:29 +01:00
bert 2c64028978 Enable debug information for release 2021-11-28 17:13:27 +01:00
bert 89159137fe Add other days 2021-11-28 17:12:26 +01:00
bert 186d91d1b7 Use function pointers over dyn traits 2021-11-28 16:49:37 +01:00
bert cece8439a7 Initial 2021 runner 2021-11-20 11:57:32 +01:00