Skip to content

Advent of Code solutions with multiple languages.

License

Notifications You must be signed in to change notification settings

Valokoodari/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code Solutions

This repository contains (almost) all of my solutions to Advent of Code through the years.

The first year I participated in Advent of code was 2017 but I only got a couple of days back then. In 2018 I was able to get a bit further but 2019 was the first year I actually got all the way to the end (and got points on the global leaderboard). Back then I used C++ but in 2020 I changed primarily to Python to make writing the code faster as I hadn't had enough practice during the year.

Year Points Main language
2015 37 - Python
2016 20 - Python
2017 8 - Rust
2018 28 - C++
2019 50 57 C++
2020 50 10 Python
2021 50 178 Python
2022 50 33 Python
2023 40 - Python
Total 333 278

Python template

In 2021 I decided that I finally need to start building myself a framework to help read the input, run the example cases as tests, measure the execution time, and most importantly ✨ look pretty ✨.

a screenshot of what my python template prints to the terminal