Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/titusio/adventofcode24
My Solutions for Advent Of Code 2024
https://github.com/titusio/adventofcode24
Last synced: about 1 month ago
JSON representation
My Solutions for Advent Of Code 2024
- Host: GitHub
- URL: https://github.com/titusio/adventofcode24
- Owner: titusio
- License: mit
- Created: 2024-12-01T07:06:01.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-09T07:35:19.000Z (about 1 month ago)
- Last Synced: 2024-12-09T08:28:48.756Z (about 1 month ago)
- Language: C#
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2024
These are the solutions for the Advent of Code challenges 2024.
## How to run
Since it is not allowed to redistribute the input files, you will have to download them yourself from the [website](https://adventofcode.com/2024).
Create a folder called `Input` in the root directory of the solution. Then place the input file named `DayXX.txt` where `XX` stands for the date. For example, the 12th puzzle would have `Day12.txt` as it's input file.
After you inserted the input file, you can run```bash
# replace XX the day you want to run.
cd ./DayXX
dotnet build
dotnet run
```