# NOTICE This is a fork of https://github.com/ageron/aoc2024-elixir , i like the project structure, so i put my solutions for days 6-25 here. # Advent of Code 2024 in Elixir If you've never heard of Advent of Code, you're missing out. Check it out now at [adventofcode.com](https://adventofcode.com/about)! I mostly do AoC puzzles for fun, generally coding in Python or Rust, but I've also found that it's a great way to get some experience with other programming languages, such as Elixir, Haskell, or Julia. This repository contains all my solutions to the [AoC 2024](https://adventofcode.com/2024) puzzles using Elixir. As I'm still learning Elixir, the code may not always be as simple or idiomatic as it could be. If you have suggestions for things I could improve, please don't hesitate to file an issue or submit a PR. Thanks! ## Usage Make sure you have Elixir and Git installed, then open a terminal and run: ```shell git clone https://github.com/ageron/aoc2024-elixir cd aoc2024-elixir mix aoc2024.run ``` You can specify days to run if you want, for example this will run days 2, 4, and 6: ``` mix aoc2024.run 2 4 6 ``` Have fun!