Solutions for Advent of Code 2024, written in a variety of programming languages, in descending order of comfort level or perceived ease of use with that language. Each day's folder contains my approach to the puzzles, showcasing different languages and techniques.
2024/
│
├── 01/ # Day 1 puzzles
│ ├── part1.js # Part 1 solution in JavaScript
│ ├── part2.py # Part 2 solution in Python
│ ├── input.txt # Puzzle input for Day 1
│
├── 02/ # Day 2 puzzles
│ ├── part1.java # Part 1 solution in Java
│ ├── part2.cpp # Part 2 solution in C++
│ ├── input.txt # Puzzle input for Day 2
│
└── ...
Advent of Code is an annual coding challenge that runs from December 1st to December 25th. Each day presents a new puzzle, perfect for learning, exploring algorithms, and solving fun problems.
- JavaScript
- PHP
- Java
- C++
- And more as the challenges progress!
Enjoy exploring the puzzles as much as I enjoyed solving them!