From 252e656208b740fed93775a522b337946e1eeb7f Mon Sep 17 00:00:00 2001 From: Kyle Farnung Date: Wed, 29 Sep 2021 20:20:18 -0700 Subject: [PATCH] Add missing README files --- 2019/README.md | 20 ++++++++++++++++++++ 2020/README.md | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 2019/README.md create mode 100644 2020/README.md diff --git a/2019/README.md b/2019/README.md new file mode 100644 index 0000000..d58b9f6 --- /dev/null +++ b/2019/README.md @@ -0,0 +1,20 @@ +# Advent of Code 2019 + +https://adventofcode.com/2019 + +## Language + +Implemented in [Rust](https://www.rust-lang.org/). + +## Preparation + +Install +[Rust](https://doc.rust-lang.org/cargo/getting-started/installation.html). + +## Running tests + +Run tests using `cargo`: + +```console +cargo test +``` diff --git a/2020/README.md b/2020/README.md new file mode 100644 index 0000000..4c46f27 --- /dev/null +++ b/2020/README.md @@ -0,0 +1,19 @@ +# Advent of Code 2020 + +https://adventofcode.com/2020 + +## Language + +Implemented in [Go](https://golang.org/). + +## Preparation + +Install [Go](https://golang.org/doc/install) for your platform. + +## Running tests + +Run tests with `go test`: + +```console +go test ./... +```