aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2021-12-05 07:04:31 +0100
committerThomas Voss <thomasvoss@live.com> 2021-12-05 07:04:31 +0100
commitecb512401e58c9429dc934f059af12df0885fc49 (patch)
tree9e01cde49933130c687a199a5e892f03fb6a30e1
parent32aa78e52d5908ee190961b51c4afdca4d287a8e (diff)
Add README
-rw-r--r--README.rst20
1 files changed, 20 insertions, 0 deletions
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..de11e31
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,20 @@
+.. vi: tw=100
+
+Advent of Code
+==============
+
+This is a repository containing my solutions to the `Advent of Code`_, a series of programming
+challenges released daily from the 1st to 25th of December every year. All sorts of languages are
+used in this repo. You'll mostly find Awk and Python, but also a lot of other languages like C and
+Shell Script, and even more "obscure" ones like Flex (a C lexer/scanner generator if you didn't
+know) or BC (an arbitrary precision calculator).
+
+The repo should be simply to navigate, just select the folder of the corresponding year and then the
+folder of the corresponding day. Each days folder should have a file called "input" with the input
+data and either two files called "puzzle-1.ext" and "puzzle-2.ext" or one file called "puzzles.ext".
+In the latter case, there should be a Makefile you can run to build the two individual programs or
+scripts to run each part seperately. It's rare but you might also see both, in this case just run
+the "puzzles.ext" file as it's required to get the "puzzle-1.ext" and "puzzle-2.ext" files to
+actually run properly.
+
+.. _Advent of Code: https://adventofcode.com