My solutions for the Advent of Code 2024 challenges! 🎅 This repository contains my daily attempts to solve the AoC puzzles and are written in C.
Let's see how far i can go this year 😭
Great question! Advent of Code (AoC) is an annual event where participants solve programming puzzles released daily from December 1st to 25th. The challenges (usually) gradually increase in difficulty, and they can be solved in any language or any way possible. People on reddit can get quite creative at this ;)
This repository contains:
- Source code: Organized by day (
/1
,/2
, etc.) and by part (/1/part_1.c, /1/part_2.c) - Input files: My custom input data for each challenge (/1/input.txt)
- jacolib.h: My personal bad attempt at creating some somewhat useful function for me to use in this and my other projects.
- Language: C
- Compiler:
gcc
- IDE/Text Editor: VScode
- Just clone this repository:
git clone https://github.com/96jaco96/advent_of_code_2024.git
- CD to the directory of the solution you want to compile
cd advent_of_code_2024/1
- Put your persnal input into input.txt and compile and run!
gcc part_1.c && ./part_1
"Your code sucks!"
-cite.
Yes. Yes it does! not even gonna pretend it doesn't this time. 😭
But still: Any contributions is greatly appreciated. You can fork this and try to improve it or whatever.
I won't be accepting any pull request tho.
These are MY bad solutions and will stay like they're.