From 298a5e145720291ae82182c41ddb3defab088ddf Mon Sep 17 00:00:00 2001 From: Marijn Doeve Date: Sat, 4 Dec 2021 13:58:06 +0100 Subject: [PATCH] Readme --- README.md | 16 ++++++++++++++++ 1.in => input1.in | 0 2 files changed, 16 insertions(+) create mode 100644 README.md rename 1.in => input1.in (100%) diff --git a/README.md b/README.md new file mode 100644 index 0000000..607befc --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Adevent of Code 2021 + +So this is my collection of code for [Advent of Code 2021](https://adventofcode.com/2021). +Expect hacky code that is not representative of my average code quality. + +Python solutions take input from `stdin`, so run like this: + +```shell +cat input1.in | python3 3.py +``` + +Swift solutions take the filename as the first argument. + +```shell +swift ./AoC1/main.swift input1.in +``` diff --git a/1.in b/input1.in similarity index 100% rename from 1.in rename to input1.in