Skip to content

lolo101/Advent-of-Code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

141 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code

Therein lies my solutions to the Advent of Code. They are ordered by year, then by day.

For each puzzle, I usually try to make part two retro-compatible with part one.

How to use

Tests are written in Java. The build tool is Maven. Each year, I update the language version to play with the latest features.

So you need to have a recent JDK and Maven installed on your machine.

As advised by the rules, the puzzle inputs are not included. Each test expects the input to be placed in a file named "input" in the same package.

For instance, my layout:

src/main
 ├─ java
 │   └─ fr/lbroquet/adventofcode2025
 │       └─ day1
 │           └─ Main.java   <--------- puzzle code
 └─ resources   <--------------------- Git-ignored
     └─ fr/lbroquet/adventofcode2025
         └─ day1
             └─ input   <------------- puzzle input

I recommend laying out your inputs in the aforementioned fashion, then running the following commands:

mvn compile
java -cp target/classes fr.lbroquet.adventofcode2025.day1.Main

About

My own responses for the adventofcode.com challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages