Skip to content

FdHerrera/aoc-2023

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code 2023 - Java Solutions

Introduction

Welcome to the Advent of Code 2023 repository! This repository contains my solutions for the Advent of Code 2023 challenges implemented in Java. Advent of Code is an annual coding event where participants solve two coding challenges every day leading up to Christmas. It's a great opportunity to improve your problem-solving skills and learn new programming techniques.

Table of Contents

  1. Project Structure
  2. Running the Solutions
  3. Input Files
  4. Contributing

Project Structure

The project is organized into packages corresponding to each day's challenge. Inside each package, you will find the Java files containing the solutions and any necessary supporting files. The main method in each file is used to run and test the solution.

.
├── lib
    └── src
        ├─── main
        |     └── java
        |          └── aoc
        |               ├── DayOne
        |               ├── DayTwo
        |               ├── ...
        |
        └── test
              └── java
                   └── aoc
                   ├    ├── DayOneTest
                   │    ├── DayTwoTest
                   │    ├── ...
                   │                   
                   └── resources
                        └── input
                             └── dayone.txt
                             └── daytwo.txt
                             └── ...

Input Files

Input files for each day's challenge are defined as "dayxxx.txt" in the resources package of the tests. These files contain the puzzle input necessary for the solutions to work correctly.

Contributing

If you would like to contribute by providing alternative solutions, improvements, or additional documentation, feel free to submit a pull request. Please follow the existing code style and ensure that your solutions pass the provided test cases.

Happy coding and have fun solving Advent of Code challenges!

About

My advent of code repo

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages