diff options
author | Tristan Williams <tgwil@tgwil.net> | 2025-01-11 14:07:50 -0500 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2025-01-11 14:07:50 -0500 |
commit | 03e14731fb51fafbf7931231674ecf7a621fcbf4 (patch) | |
tree | 969f82a20353cd279354b97b26fde756651780b3 /README.md | |
download | aoc-03e14731fb51fafbf7931231674ecf7a621fcbf4.tar.gz aoc-03e14731fb51fafbf7931231674ecf7a621fcbf4.tar.bz2 aoc-03e14731fb51fafbf7931231674ecf7a621fcbf4.zip |
Complete AoC 2015 Day 1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..57255bc --- /dev/null +++ b/README.md | |||
@@ -0,0 +1,25 @@ | |||
1 | # Advent of Code | ||
2 | |||
3 | This repository contains my solutions to [Advent of Code](https://adventofcode.com/) puzzles. I intend to start from Day 1 of the first year and working through them all. I will probably eventually do this in multiple languages. | ||
4 | |||
5 | All solutions are contained within the `/src` directory and are named suchly: | ||
6 | |||
7 | `YEAR.DAY.ATTEMPT.EXT` | ||
8 | |||
9 | First attempts (per language) are named `01-first-attempt`, and are never edited afterwards. Editing is why I designed the file naming scheme to handle multiple attempts. | ||
10 | |||
11 | For example: | ||
12 | - `2015.01.01-first-attempt.c` | ||
13 | - `2015.01.01-first-attempt.lisp` | ||
14 | - `2016.05.03-recursive.lisp` | ||
15 | |||
16 | |||
17 | ## Progress | ||
18 | |||
19 | The following table shows the number of complete attempts I've produced for each problem+language combination. | ||
20 | |||
21 | COMPLETE SOLUTIONS: 0 | ||
22 | |||
23 | | DAY | CL | | ||
24 | |---------|----| | ||
25 | | 2015.01 | | | ||