Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mborromeo/advent_of_code_2024
Advent of Code 2024 in... Elixir!
https://github.com/mborromeo/advent_of_code_2024
Last synced: about 1 month ago
JSON representation
Advent of Code 2024 in... Elixir!
- Host: GitHub
- URL: https://github.com/mborromeo/advent_of_code_2024
- Owner: mborromeo
- Created: 2024-12-01T21:39:56.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-01T22:17:52.000Z (about 2 months ago)
- Last Synced: 2024-12-01T23:24:49.336Z (about 2 months ago)
- Language: Elixir
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AdventOfCode 2024
This is my attempt at the Advent of Code 2024.
I will be using Elixir for this challenge.You can run the code in the IEx shell, with the runner script:
```
AdventOfCode.run(1)
```
where the argument is the day you want to run.Otherwise you can build the project with
```
mix escript.build
```
and then run the executable with the day as an argument:
```
./advent_of_code 1
```All the quizzes are solved in the `lib` directory, and the tests are in the `test` directory.
Please consider that this is my first time using Elixir, so the code might not be the most idiomatic :)