https://github.com/stefanasandei/advent-of-code
My Advent of Code solutions🎄
https://github.com/stefanasandei/advent-of-code
advent-of-code aoc aoc2023 aoc2024 c c99
Last synced: 2 months ago
JSON representation
My Advent of Code solutions🎄
- Host: GitHub
- URL: https://github.com/stefanasandei/advent-of-code
- Owner: stefanasandei
- License: gpl-3.0
- Created: 2023-11-30T19:19:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-06T09:03:53.000Z (6 months ago)
- Last Synced: 2025-01-30T08:15:53.285Z (4 months ago)
- Topics: advent-of-code, aoc, aoc2023, aoc2024, c, c99
- Language: C
- Homepage:
- Size: 155 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 🎄
[Advent of Code](https://adventofcode.com/) is an yearly event, in the form of an Advent calendar, where you get to solve one problem a day until Christmas.
## Workflow
Usually, the first day is pretty basic so I use the code from that day as a template. I prefer to not copy the code from the prior year so I can see how my style has changed and what did I learn new :D
This project uses `make` as a build tool so to run the code from a specific day:
```console
$ make DAY=01 PART=1
```Or if you want to run the project for the current day:
```console
$ make
```The `input.txt` and `example.txt` have to be inside the specific day folder.
##
Happy coding! âť„