Files
adventofcode/2020
Bert Peters 859034b09d Improve performance day 15
Using 32 bit integers is significantly faster due to better memory
locality, although it requires a bit of casting to move between indices
and values as needed.
2020-12-15 09:10:33 +01:00
..
2020-12-15 09:06:17 +01:00
2020-12-14 20:06:02 +01:00
2020-12-15 09:10:33 +01:00
2020-12-05 14:25:52 +01:00
2020-12-13 08:22:35 +01:00
2020-12-02 21:20:12 +01:00
2020-11-28 23:43:15 +01:00

Advent of Code 2020

This folder contains a runner script for Advent of Code 2020. This year, I'm attempting to solve every problem once more in Rust.

aoc-2020
Advent of Code 2020 runner

USAGE:
    aoc-2020 [FLAGS] [OPTIONS] <day>

ARGS:
    <day>    Which day to run

FLAGS:
    -h, --help       Prints help information
    -2, --part2      Run part 2 instead of part 1
    -t, --time       Print time taken
    -V, --version    Prints version information

OPTIONS:
    -i, --input <input>    Read input from the given file instead of stdin