Skip to content

andywaltlova/advent_of_code_2021

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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