Files
adventofcode/2018
Bert Peters eaf1156ae0 Refactor for autovectorization.
By storing x/y as a vector of ints instead of a vector of tuples, the
compiler recognizes it for what it is: a huge vector multiplication. Now
the compiler emits AVX2 instructions.
2018-12-10 17:13:10 +01:00
..
2018-12-10 13:13:29 +01:00
2018-12-08 07:13:48 +01:00
2018-12-10 17:13:10 +01:00
2018-11-09 16:11:08 +01:00
2018-12-09 13:27:05 +01:00
2018-11-09 16:11:08 +01:00

Advent of Code 2018

Once again, I will be attempting to complete the challenges in Rust. However, this this I will be focussing on having idiomatic code and having everything in a single executable.

To run day 1: cargo run -- 1. Other options can be seen with the --help flag. The program will by default read its input from stdin.