Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-30T12:49:14.000Z (about 2 months ago)
- Last Synced: 2024-11-30T13:35:03.694Z (about 2 months ago)
- Topics: advent-of-code, aoc, aoc2023, aoc2024, c, c99
- Language: C
- Homepage:
- Size: 120 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 🎄
[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! âť„