After sucessfully finishing last year tasks in Python I decited that this year I want to really chalenge myself - so I chose for me completely unknown programming language - GO. Hopefully it will be fun!
Input data are downloaded via python module aocd
├── daily_tasks # AoC tasks
│ ├── 00.go
│ ├── 01.go
│ ├── 02.go
│ ├── 03.go
│ ├── ...
│ ├── 25.go
│ ├── data # daily inputs
│ │ ├── 00.txt
│ │ ├── 01.txt
│ │ ├── 02.txt
│ │ ├── 03.txt
│ │ ├── ...
│ │ └── 25.txt
│ ├── go.mod
│ └── utils.go
├── hello
│ ├── go.mod
│ └── hello.go
└── README.md