Welcome to my repository of solutions for the Advent of Code challenges! Advent of Code is an annual programming event featuring daily puzzles from December. This repository contains my personal solutions spanning multiple years, including 2024, where I am solving the challenges in Python and R, the main tools used at my workplace, Statistics Norway.
The repository is organized by year, with separate folders for each event:
/2024/
/python/ - Solutions in Python
/R/ - Solutions in R
/2023/
/python/ - Solutions in Python (all stars)
...
For 2024, my goal is to:
- Enhance my problem-solving skills in Python and R.
- Apply tools commonly used in real-world tasks at Statistics Norway.
- Have fun while tackling creative and challenging puzzles!
For previous years, you’ll find solutions in Python and other languages, showcasing my journey of growth and exploration as a programmer.
Each solution folder includes:
- Solution Code: The script solving the puzzle for each day.
- Comments: Inline explanations of the logic used.
- Challenges & Insights: Key learning points or difficulties faced.
- Clone the repository:
git clone https://github.com/superjarle/advent-of-code.git
- Navigate to the year and language of interest:
cd 2024/python
- Run the solution:
python day1.py
For R:
source("day1.R")
I work at Statistics Norway, where Python and R are essential for statistical analysis and automation. These solutions reflect my passion for continuous learning and using programming to solve complex problems efficiently.