My solutions to the adventofcode.com puzzles.
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as interview prep, company training, university coursework, practice problems, a speed contest, or to challenge each other.
The calendar for the 2021 event.
This repository contains my solutions to the Advent of Code puzzles. I try to solve the puzzles in different programming languages (C++, Golang, Python), so that I can learn new languages and improve my skills in the ones I already know.
- C++ compiler (e.g. g++)
- Golang compiler (e.g. go)
- Clone the repo
git clone https://github.com/Matbabs/AdventOfCode.git
- Compile the code
# CPP
g++ 1.cpp -o 1
# Go
go build 1.go
- Run the code
# CPP and Go
./1
# Python
python3 1.py
Matbabs - @_Matbabs