https://github.com/andersonhsporto/adventofcode-2024
Advent Of Code 2024
https://github.com/andersonhsporto/adventofcode-2024
adventofcode adventofcode2024 java
Last synced: 25 days ago
JSON representation
Advent Of Code 2024
- Host: GitHub
- URL: https://github.com/andersonhsporto/adventofcode-2024
- Owner: andersonhsporto
- Created: 2024-12-04T00:18:38.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-12-05T01:23:41.000Z (5 months ago)
- Last Synced: 2025-02-07T07:41:29.667Z (3 months ago)
- Topics: adventofcode, adventofcode2024, java
- Language: Java
- Homepage: https://adventofcode.com/2024
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AdventOfCode 2024
My solutions to the Advent of Code 2024 puzzles.
## Stack
- Java
## Implementation
- Each day is a separate folder/package and is a use a simplistic approach to solve the puzzles.
## Running the code
- You can run the code by running the main method in the `Main` class of each day with you favorite IDE or by running the following command in the terminal:
```bash
javac Main.java
java Main
```