/advent_of_code_2021

Christmas puzzle challenge https://adventofcode.com/2021/

Primary LanguageGo

Advent of code 2021 🎄🎅🎁

Gopher

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

Structure of repository:

├── 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

https://adventofcode.com/2021