An open API service indexing awesome lists of open source software.

https://github.com/ruegerj/aoc-2024

2024 Advent of Code 🎄
https://github.com/ruegerj/aoc-2024

advent-of-code advent-of-code-2024 golang

Last synced: 3 months ago
JSON representation

2024 Advent of Code 🎄

Awesome Lists containing this project

README

        

# 🎄 Advent of Code 2024

Solutions for this years [Advent of Code](https://adventofcode.com/2024), implemented in GoLang.

- [Day 01: Historian Hysteria](https://adventofcode.com/2024/day/1) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day01/day01.go))
- [Day 02: Red-Nosed Reports](https://adventofcode.com/2024/day/2) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day02/day02.go))
- [Day 03: Mull It Over](https://adventofcode.com/2024/day/3) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day03/day03.go))
- [Day 04: Ceres Search](https://adventofcode.com/2024/day/4) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day04/day04.go))
- [Day 05: Print Queue](https://adventofcode.com/2024/day/5) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day05/day05.go))
- [Day 06: Guard Gallivant](https://adventofcode.com/2024/day/6) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day06/day06.go))
- [Day 07: Bridge Repair](https://adventofcode.com/2024/day/7) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day07/day07.go))
- [Day 08: Resonant Collinearity](https://adventofcode.com/2024/day/8) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day08/day08.go))
- [Day 09: Disk Fragmenter](https://adventofcode.com/2024/day/9) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day09/day09.go))
- [Day 10: Hoof It](https://adventofcode.com/2024/day/10) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day10/day10.go))
- [Day 11: Plutonian Pebbles](https://adventofcode.com/2024/day/11) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day11/day11.go))
- [Day 12: Garden Groups](https://adventofcode.com/2024/day/12) ([code](https://github.com/ruegerj/aoc-2024/blob/main/day12/day12.go))

## Usage

Use the following command to run a daily challenge according to its number:

```bash
go run . [day-nr]
```