From 1f452e961f78d72c4d7a8c1422432b13d5003233 Mon Sep 17 00:00:00 2001 From: Adam Millerchip Date: Sun, 27 Nov 2022 18:14:50 +0900 Subject: [PATCH] Add 2022 readme --- 2022/README.md | 11 +++++++++++ README.md | 1 + template/dayN.exs => dayN.exs | 0 3 files changed, 12 insertions(+) create mode 100644 2022/README.md rename template/dayN.exs => dayN.exs (100%) diff --git a/2022/README.md b/2022/README.md new file mode 100644 index 0000000..67c95be --- /dev/null +++ b/2022/README.md @@ -0,0 +1,11 @@ +# AdventOfCode2022 + +My (attempted) solutions to [Advent of Code 2022](https://adventofcode.com/2022) in Elixir. + +image + +## Running: + +```sh +elixir dayN.exs input_filename +``` diff --git a/README.md b/README.md index afecfd7..2808c16 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,6 @@ My (attempted) solutions to [Advent of Code](https://adventofcode.com/). +- [2022: Elixir](https://git.adamu.jp/adam/AdventOfCode/src/branch/main/2022) - [2020: Elixir](https://git.adamu.jp/adam/AdventOfCode/src/branch/main/2020) - [2018: Elixir](https://git.adamu.jp/adam/AdventOfCode/src/branch/main/2018) diff --git a/template/dayN.exs b/dayN.exs similarity index 100% rename from template/dayN.exs rename to dayN.exs