Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 887 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 887 Bytes

Advent of Code 2024

Build and Test

My solutions for Advent of Code 2024 implemented in Java.

Project Structure

  • src/main/java/dayXX - Contains solution for each day
  • src/main/resources/dayXX - Contains input files for each day's puzzle

Running Solutions

This is a Maven project. To run:

  1. Clone the repository
  2. Build the project: mvn clean package
  3. Run individual day solutions through their respective main methods

Development

  • Java 17
  • Maven for build management
  • Spotless for code formatting

Code Formatting

Format code before committing:

mvn spotless:apply

Progress

  • Day 1
  • Day 2
  • Day 3-25 (Coming Soon)