Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/notfilippo/aoc
Advent of Code solutions 🎄
https://github.com/notfilippo/aoc
advent-of-code
Last synced: about 1 month ago
JSON representation
Advent of Code solutions 🎄
- Host: GitHub
- URL: https://github.com/notfilippo/aoc
- Owner: notfilippo
- License: mit
- Created: 2022-12-01T10:59:27.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T17:57:07.000Z (about 2 years ago)
- Last Synced: 2024-10-24T00:09:17.508Z (3 months ago)
- Topics: advent-of-code
- Language: Elixir
- Homepage: https://adventofcode.com
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AoC Solutions
> Learning elixir by solving Advent of Code problems
## Usage
First off, download all the dependencies:
```bash
mix deps.get
```Then create a file called `config.exs` in the `config` directory, by copying the `config_example.exs` file. Uncomment the code and add your AoC session token.
Then enter into the interactive elixir REPL:
```bash
iex -S mix
```## Running the tests
```elixir
# run part one
p1
# or part two
p2
```## Reference
For more info on Advent of Code, see [here](https://adventofcode.com/). I've also used the `advent_of_code_utils` package, which can be found [here](https://github.com/mathsaey/advent_of_code_utils).
## License
MIT