Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jwcarman/adventofcode2024
- Owner: jwcarman
- License: apache-2.0
- Created: 2024-12-01T11:41:50.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-08T21:55:22.000Z (about 1 month ago)
- Last Synced: 2024-12-08T22:28:37.463Z (about 1 month ago)
- Topics: advent-of-code, advent-of-code-2024, advent-of-code-2024-kotlin
- Language: Kotlin
- Homepage:
- Size: 132 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)