Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jerelmiller/advent-of-code-2021
https://adventofcode.com/
https://github.com/jerelmiller/advent-of-code-2021
Last synced: 4 days ago
JSON representation
https://adventofcode.com/
- Host: GitHub
- URL: https://github.com/jerelmiller/advent-of-code-2021
- Owner: jerelmiller
- Created: 2021-12-02T05:05:07.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-02T06:49:37.000Z (almost 3 years ago)
- Last Synced: 2024-10-17T15:37:33.348Z (22 days ago)
- Language: Elixir
- Size: 8.79 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2021 challenge
These are my attempts at the [2021 Advent of Code](https://adventofcode.com/)
challenges.## Day 1
These solutions are written using Elixir. To run, you must have Elixir
installed.```sh
# Get part 1's solution
elixir day-1/part_1.exs# Get part 2's solution
elixir day-1/part_2.exs
```## Day 2
These solutions are written using Elixir. To run, you must have Elixir
installed.```sh
# Get part 1's solution
elixir day-2/part_1.exs# Get part 2's solution
elixir day-2/part_2.exs
```