Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andersonhsporto/adventofcode-2024
Advent Of Code 2024
https://github.com/andersonhsporto/adventofcode-2024
adventofcode adventofcode2024 java
Last synced: 20 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 (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-05T01:23:41.000Z (30 days ago)
- Last Synced: 2024-12-05T02:22:06.611Z (30 days 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
```