Advent of Code 2020
Go to file
Chris Josten 34c56ba047
Day 17: improve doc, fix Point bug
Accidentily swapped the arguments of opIndexAssign, which caused

auto p = Point!2(1,2)
p[0] = 3;
assert(p.x == 3)

to fail
2020-12-18 01:58:31 +01:00
in Added day 17, part 1 2020-12-17 23:50:41 +01:00
source Day 17: improve doc, fix Point bug 2020-12-18 01:58:31 +01:00
.gitignore Added day 1 2020-12-01 12:28:18 +01:00
LICENSE Initial commit 2020-11-30 15:15:56 +01:00
README.txt Added day 8 2020-12-08 06:38:59 +01:00
dub.sdl Added day 17, part 1 2020-12-17 23:50:41 +01:00
dub.selections.json Added day 17, part 1 2020-12-17 23:50:41 +01:00

README.txt

Advent of Code 2020
================================================================================

HOW TO COMPILE:
Run "dub".


HOW TO RUN:
./oac-2020 [DAY] [PART] <INPUT_FILE> <DAY_SPECIFIC_ARGUMENTS...>

The program reads it input from $PWD/in/<DAY>.txt if INPUT_FILE is not specified or from stdin 
if INPUT_FILE is equal to "-".

BIG BOYS:
https://ls-a.xyz/advent/2020/bigboy.html