Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jwcarman/adventofcode2024

My solutions for Advent of Code 2024
https://github.com/jwcarman/adventofcode2024

advent-of-code advent-of-code-2024 advent-of-code-2024-kotlin

Last synced: 30 days ago
JSON representation

My solutions for Advent of Code 2024

Awesome Lists containing this project

README

        

![Build Status](https://github.com/jwcarman/adventofcode2024/actions/workflows/maven.yml/badge.svg?branch=main)
![CodeQL](https://github.com/jwcarman/adventofcode2024/actions/workflows/github-code-scanning/codeql/badge.svg?branch=main)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=jwcarman_adventofcode2024&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=jwcarman_adventofcode2024)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=jwcarman_adventofcode2024&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=jwcarman_adventofcode2024)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

# Advent of Code 2024
This repository contains my solutions for the [Advent of Code 2024](https://adventofcode.com/2024)

## Structure

The project is structured as follows:

* `src/main/kotlin` contains the main code for the solutions
* `src/test/kotlin` contains the tests used to run the solutions
* `src/test/resources` contains the input files for each puzzle (including examples)

## Solutions

* [Day 1: Historian Hysteria](src/test/kotlin/adventofcode/Day01Test.kt)
* [Day 2: Red-Nosed Reports](src/test/kotlin/adventofcode/Day02Test.kt)
* [Day 3: Mull It Over](src/test/kotlin/adventofcode/Day03Test.kt)
* [Day 4: Ceres Search](src/test/kotlin/adventofcode/Day04Test.kt)
* [Day 5: Print Queue](src/test/kotlin/adventofcode/Day05Test.kt)
* [Day 6: Guard Gallivant](src/test/kotlin/adventofcode/Day06Test.kt)
* [Day 7: Bridge Repair](src/test/kotlin/adventofcode/Day07Test.kt)
* [Day 8: Resonant Collinearity](src/test/kotlin/adventofcode/Day08Test.kt)