You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
425 B

3 years ago
# Advent of Code
This code may contain spoilers, if you haven't finished the puzzles over on https://adventofcode.com.
## Running
Paste your input in a file named `input.txt` in the root of the project of the
desired language. After that, follow the instructions for each language:
### Rust
```
cargo run
```
### Elixir
```
$ iex
iex(1)> c("main.ex")
[DayX]
iex(2)> DayX.load_file |> DayX.first
YOUR ANSWER
iex(3)>
```