Skip to content

gwealm/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Advent of Code

Hi! This repository serves mainly for archiving my solutions for the Advent of Code puzzles.

Don't use these solution as reference since they might not be optimal as my main goal is to learn new things and tweak around with concepts I'm not that familiar with. In fact, I apologize in advance for overkilling simple problems.

Progress

2023 - 12★ / 48★

Structure

There is a repository for each AoC Edition I've participated. Inside of it there will be a subfolder for each day and depending on the amount of languages I'm trying, another folder per language. 😅

Ex.:

aoc
├── aoc-<year>
│   ├── day-<n>
│   │   ├── kotlin
│   │   │   ├── part-1
│   │   │   │   ├── input.txt
│   │   │   │   ├── solve.kt
│   │   │   │   └── test.txt
│   │   │   └── part-2
│   │   │       ├── input.txt
│   │   │       ├── solve.kt
│   │   │       └── test.txt
│   │   ├── python
│   │   │   ├── part-1
│   │   │   │   ├── input.txt
│   │   │   │   ├── solve.py
│   │   │   │   └── test.txt
│   │   │   └── part-2
│   │   │       ├── input.txt
│   │   │       ├── solve.py
│   │   │       └── test.txt
│   │   ├── ...
│   ├── day-<n+1>
│   |...
|...

Side note

Since my main goals for doing this are to learn and have fun, feel free to point out anything or ask me stuff whenever you have a question (or even just to discuss other ideas).

About

Solutions for the Advent of Code puzzles.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages