sirLisko / advent-of-code

collection of scripts for advent of code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advent of Code Solutions Repository

This repository contains my solutions to the puzzles from Advent of Code.

Introduction

Advent of Code is an annual coding event that offers a series of programming challenges released daily in December. Each puzzle is crafted to test various programming skills and problem-solving techniques.

Structure

The repository is organized by years. Each year has its own folder, and within each year's folder, the solutions are categorized by day. For example:

.
├── 2018
│   ├── 01
│   │   ├── input.txt
│   │   ├── part1.js
│   │   └── part2.js
│   └── ...
├── 2022
│   ├── 01
│   │   ├── input.txt
│   │   ├── part1.py
│   │   └── part2.py
│   └── ...
└── ...

Languages

  • 2023: Python 🐍
  • 2022: Python 🐍
  • 2018: Javascript
  • 2017: Javascript
  • 2015: Javascript

Stats

[2023]  6⭐️
[2022]  8⭐️
[2021]
[2020]
[2019]
[2018]  2⭐️
[2017]  2⭐️
[2016]
[2015] 13⭐️
Total stars: 31⭐️

Running the Code

To run a particular solution, navigate to the respective day's folder and execute the Python/Javascript file. Ensure you have the respective language runtime installed on your system.

Javascript Example

node part1.js

Python Example

python part1.py

Disclaimer

These solutions are my own attempts at solving the puzzles and may not always be the most optimized or elegant solutions. I encourage exploration and welcome feedback or alternative approaches.

Contributing

Contributions are welcome! If you have an alternative solution or an improvement to existing code, feel free to open a pull request.

Acknowledgments

Thanks to the creators of Advent of Code for providing these engaging puzzles every year!

About

collection of scripts for advent of code


Languages

Language:JavaScript 53.0%Language:Python 47.0%